diff --git a/core/deps/libwebsocket/context.c b/core/deps/libwebsocket/context.c index 2c283d767..bf9b6cb73 100644 --- a/core/deps/libwebsocket/context.c +++ b/core/deps/libwebsocket/context.c @@ -122,7 +122,7 @@ libwebsocket_create_context(struct lws_context_creation_info *info) context->options = info->options; context->iface = info->iface; /* to reduce this allocation, */ - context->max_fds = getdtablesize(); + context->max_fds = sysconf(_SC_OPEN_MAX); lwsl_notice(" static allocation: %u + (%u x %u fds) = %u bytes\n", sizeof(struct libwebsocket_context), sizeof(struct libwebsocket_pollfd) + diff --git a/core/emitter/x86_emitter.h b/core/emitter/x86_emitter.h index ecffcd327..45727822a 100644 --- a/core/emitter/x86_emitter.h +++ b/core/emitter/x86_emitter.h @@ -228,6 +228,18 @@ struct /*__declspec(dllexport)*/ x86_ptr_imm { this->ptr=ptr; } + + template + x86_ptr_imm(Rv(* ptr)(Args...)) + { + this->ptr= reinterpret_cast(ptr); + } + + template + x86_ptr_imm(Rv(DYNACALL * ptr)(Args...)) + { + this->ptr= reinterpret_cast(ptr); + } }; enum x86_mrm_mod diff --git a/core/rec-x86/rec_lin86_asm.S b/core/rec-x86/rec_lin86_asm.S index 612cc4e89..2a2df3479 100644 --- a/core/rec-x86/rec_lin86_asm.S +++ b/core/rec-x86/rec_lin86_asm.S @@ -96,8 +96,10 @@ ngen_mainloop: mov ecx,0xA0000000 mov dword ptr cycle_counter, 448 #SH4_TIMESLICE - mov dword ptr loop_no_update,offset no_update - mov dword ptr intc_sched,offset intc_sched_offs + lea eax, no_update + mov dword ptr loop_no_update, eax + lea eax, intc_sched_offs + mov dword ptr intc_sched, eax mov eax,0 diff --git a/core/rec-x86/rec_x86_il.cpp b/core/rec-x86/rec_x86_il.cpp index 38bb27976..3c49ff733 100644 --- a/core/rec-x86/rec_x86_il.cpp +++ b/core/rec-x86/rec_x86_il.cpp @@ -514,21 +514,21 @@ void ngen_opcode(RuntimeBlockInfo* block, shil_opcode* op,x86_block* x86e, bool switch(size) { case 1: - if (!fuct) fuct=ReadMem8; + if (!fuct) fuct=reinterpret_cast(&ReadMem8); x86e->Emit(op_call,x86_ptr_imm(fuct)); x86e->Emit(op_movsx8to32,EAX,EAX); break; case 2: - if (!fuct) fuct=ReadMem16; + if (!fuct) fuct=reinterpret_cast(&ReadMem16); x86e->Emit(op_call,x86_ptr_imm(fuct)); x86e->Emit(op_movsx16to32,EAX,EAX); break; case 4: - if (!fuct) fuct=ReadMem32; + if (!fuct) fuct=reinterpret_cast(&ReadMem32); x86e->Emit(op_call,x86_ptr_imm(fuct)); break; case 8: - if (!fuct) fuct=ReadMem64; + if (!fuct) fuct=reinterpret_cast(&ReadMem64); x86e->Emit(op_call,x86_ptr_imm(fuct)); break; default: diff --git a/shell/android-studio/android-studio.iml b/shell/android-studio/android-studio.iml new file mode 100644 index 000000000..a53647de1 --- /dev/null +++ b/shell/android-studio/android-studio.iml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/android_gradle_build.json new file mode 100644 index 000000000..5916d205e --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/android_gradle_build.json @@ -0,0 +1,862 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darm64-v8a NDK_ALL_ABIS\u003darm64-v8a NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib clean" + ], + "libraries": { + "dc-debug-arm64-v8a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darm64-v8a NDK_ALL_ABIS\u003darm64-v8a NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libdc.so", + "toolchain": "toolchain-arm64-v8a", + "abi": "arm64-v8a", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libdc.so" + }, + "sexplay-debug-arm64-v8a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darm64-v8a NDK_ALL_ABIS\u003darm64-v8a NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libsexplay.so", + "toolchain": "toolchain-arm64-v8a", + "abi": "arm64-v8a", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libsexplay.so" + }, + "android_native_app_glue-debug-arm64-v8a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darm64-v8a NDK_ALL_ABIS\u003darm64-v8a NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libandroid_native_app_glue.a", + "toolchain": "toolchain-arm64-v8a", + "abi": "arm64-v8a", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libandroid_native_app_glue.a" + } + }, + "toolchains": { + "toolchain-arm64-v8a": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/ndkBuild_build_command.txt new file mode 100644 index 000000000..b344dcda7 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=arm64-v8a +NDK_ALL_ABIS=arm64-v8a +NDK_DEBUG=1 +APP_PLATFORM=android-21 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/ndkBuild_build_output.txt new file mode 100644 index 000000000..759249b62 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/arm64-v8a/ndkBuild_build_output.txt @@ -0,0 +1,465 @@ +$TARGET_ARCH_ABI is [arm64-v8a] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a +echo [arm64-v8a] "Gdbserver ": "[aarch64-linux-android] /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/gdbserver" +install -p /opt/android-sdk/ndk-bundle/prebuilt/android-arm64/gdbserver/gdbserver /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/gdbserver +echo [arm64-v8a] "Gdbsetup ": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/gdb.setup" +echo "set solib-search-path /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a" > /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/gdb.setup +echo "directory /opt/android-sdk/ndk-bundle/sysroot /opt/android-sdk/ndk-bundle/sources/android/native_app_glue /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport /opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.." >> /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [arm64-v8a] "Compile++ ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [arm64-v8a] "Compile++ ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [arm64-v8a] "Compile++ ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [arm64-v8a] "Compile++ ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [arm64-v8a] "Compile++ ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [arm64-v8a] "Compile++ ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [arm64-v8a] "Compile++ ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [arm64-v8a] "Compile++ ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [arm64-v8a] "Compile++ ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [arm64-v8a] "Compile++ ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [arm64-v8a] "Compile++ ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [arm64-v8a] "Compile++ ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [arm64-v8a] "Compile++ ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [arm64-v8a] "Compile++ ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [arm64-v8a] "Compile++ ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [arm64-v8a] "Compile++ ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [arm64-v8a] "Compile++ ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [arm64-v8a] "Compile++ ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [arm64-v8a] "Compile++ ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [arm64-v8a] "Compile++ ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [arm64-v8a] "Compile++ ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [arm64-v8a] "Compile++ ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [arm64-v8a] "Compile++ ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [arm64-v8a] "Compile++ ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [arm64-v8a] "Compile++ ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [arm64-v8a] "Compile++ ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [arm64-v8a] "Compile++ ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [arm64-v8a] "Compile++ ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [arm64-v8a] "Compile++ ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [arm64-v8a] "Compile++ ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [arm64-v8a] "Compile++ ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [arm64-v8a] "Compile++ ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [arm64-v8a] "Compile++ ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [arm64-v8a] "Compile++ ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [arm64-v8a] "Compile++ ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [arm64-v8a] "Compile++ ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [arm64-v8a] "Compile++ ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [arm64-v8a] "Compile++ ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [arm64-v8a] "Compile++ ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [arm64-v8a] "Compile++ ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [arm64-v8a] "Compile++ ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [arm64-v8a] "Compile++ ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [arm64-v8a] "Compile++ ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [arm64-v8a] "Compile++ ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [arm64-v8a] "Compile++ ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [arm64-v8a] "Compile++ ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [arm64-v8a] "Compile++ ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [arm64-v8a] "Compile++ ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [arm64-v8a] "Compile++ ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [arm64-v8a] "Compile++ ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [arm64-v8a] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [arm64-v8a] "Compile++ ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [arm64-v8a] "Compile++ ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [arm64-v8a] "Compile++ ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [arm64-v8a] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [arm64-v8a] "Compile++ ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [arm64-v8a] "Compile++ ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [arm64-v8a] "Compile++ ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [arm64-v8a] "Compile++ ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [arm64-v8a] "Compile++ ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [arm64-v8a] "Compile++ ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [arm64-v8a] "Compile++ ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [arm64-v8a] "Compile++ ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [arm64-v8a] "Compile++ ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [arm64-v8a] "Compile++ ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [arm64-v8a] "Compile++ ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [arm64-v8a] "Compile++ ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [arm64-v8a] "Compile++ ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [arm64-v8a] "Compile++ ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [arm64-v8a] "Compile++ ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [arm64-v8a] "Compile++ ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [arm64-v8a] "Compile++ ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [arm64-v8a] "Compile++ ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna +echo [arm64-v8a] "Compile++ ": "dc <= blockmanager.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o +echo [arm64-v8a] "Compile++ ": "dc <= decoder.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o +echo [arm64-v8a] "Compile++ ": "dc <= driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o +echo [arm64-v8a] "Compile++ ": "dc <= shil.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [arm64-v8a] "Compile++ ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [arm64-v8a] "Compile++ ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [arm64-v8a] "Compile++ ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [arm64-v8a] "Compile++ ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [arm64-v8a] "Compile ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [arm64-v8a] "Compile ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [arm64-v8a] "Compile ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [arm64-v8a] "Compile ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [arm64-v8a] "Compile ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [arm64-v8a] "Compile ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [arm64-v8a] "Compile ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [arm64-v8a] "Compile ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [arm64-v8a] "Compile ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [arm64-v8a] "Compile ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [arm64-v8a] "Compile ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [arm64-v8a] "Compile ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [arm64-v8a] "Compile ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [arm64-v8a] "Compile ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [arm64-v8a] "Compile ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [arm64-v8a] "Compile ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [arm64-v8a] "Compile ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [arm64-v8a] "Compile ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [arm64-v8a] "Compile ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [arm64-v8a] "Compile ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [arm64-v8a] "Compile ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [arm64-v8a] "Compile ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [arm64-v8a] "Compile ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [arm64-v8a] "Compile ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [arm64-v8a] "Compile ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [arm64-v8a] "Compile ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [arm64-v8a] "Compile ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [arm64-v8a] "Compile ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [arm64-v8a] "Compile ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [arm64-v8a] "Compile ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [arm64-v8a] "Compile ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [arm64-v8a] "Compile ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [arm64-v8a] "Compile ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [arm64-v8a] "Compile ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [arm64-v8a] "Compile ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [arm64-v8a] "Compile ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [arm64-v8a] "Compile ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [arm64-v8a] "Compile ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [arm64-v8a] "Compile ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [arm64-v8a] "Compile ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [arm64-v8a] "Compile ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [arm64-v8a] "Compile ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [arm64-v8a] "Compile ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [arm64-v8a] "Compile ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [arm64-v8a] "Compile ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [arm64-v8a] "Compile ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [arm64-v8a] "Compile ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [arm64-v8a] "Compile ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [arm64-v8a] "Compile ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [arm64-v8a] "Compile ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [arm64-v8a] "Compile ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [arm64-v8a] "Compile ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [arm64-v8a] "Compile ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [arm64-v8a] "Compile ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [arm64-v8a] "Compile ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [arm64-v8a] "Compile ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [arm64-v8a] "Compile ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [arm64-v8a] "Compile ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [arm64-v8a] "Compile ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [arm64-v8a] "Compile ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [arm64-v8a] "Compile ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [arm64-v8a] "Compile ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [arm64-v8a] "Compile ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [arm64-v8a] "Compile ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [arm64-v8a] "Compile ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [arm64-v8a] "Compile ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [arm64-v8a] "Compile ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [arm64-v8a] "Compile ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [arm64-v8a] "Compile ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [arm64-v8a] "Compile ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [arm64-v8a] "Compile ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [arm64-v8a] "Compile ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [arm64-v8a] "Compile ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [arm64-v8a] "Compile ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [arm64-v8a] "Compile ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [arm64-v8a] "Compile ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [arm64-v8a] "Compile ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [arm64-v8a] "Compile ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [arm64-v8a] "Compile ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [arm64-v8a] "Compile ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [arm64-v8a] "Compile ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [arm64-v8a] "Compile ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [arm64-v8a] "Compile ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [arm64-v8a] "Compile ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [arm64-v8a] "Compile ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [arm64-v8a] "Compile ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [arm64-v8a] "Compile ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [arm64-v8a] "Compile ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [arm64-v8a] "Compile++ ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [arm64-v8a] "Compile++ ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/arm64-v8a +echo [arm64-v8a] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-21/arch-arm64 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/arm64-v8a/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -no-canonical-prefixes -Wl,--gc-sections,--icf=safe -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-arm64/usr/lib -llog -lGLESv2 -lEGL -lz -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libdc.so +echo [arm64-v8a] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [arm64-v8a] "Compile ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=21 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/android_native_app_glue +echo [arm64-v8a] "Compile ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=21 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [arm64-v8a] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [arm64-v8a] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-21/arch-arm64 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -no-canonical-prefixes -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-arm64/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libsexplay.so +echo [arm64-v8a] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/arm64-v8a/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/arm64-v8a/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/android_gradle_build.json new file mode 100644 index 000000000..ba0820b60 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/android_gradle_build.json @@ -0,0 +1,871 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darmeabi-v7a NDK_ALL_ABIS\u003darmeabi-v7a NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib clean" + ], + "libraries": { + "android_native_app_glue-debug-armeabi-v7a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darmeabi-v7a NDK_ALL_ABIS\u003darmeabi-v7a NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libandroid_native_app_glue.a", + "toolchain": "toolchain-armeabi-v7a", + "abi": "armeabi-v7a", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-mthumb\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libandroid_native_app_glue.a" + }, + "dc-debug-armeabi-v7a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darmeabi-v7a NDK_ALL_ABIS\u003darmeabi-v7a NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libdc.so", + "toolchain": "toolchain-armeabi-v7a", + "abi": "armeabi-v7a", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-ARM/ngen_arm.S", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-fvisibility\u003dhidden\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-ARM/rec_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libdc.so" + }, + "sexplay-debug-armeabi-v7a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darmeabi-v7a NDK_ALL_ABIS\u003darmeabi-v7a NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libsexplay.so", + "toolchain": "toolchain-armeabi-v7a", + "abi": "armeabi-v7a", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-mthumb\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-mthumb\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libsexplay.so" + } + }, + "toolchains": { + "toolchain-armeabi-v7a": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "S", + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/ndkBuild_build_command.txt new file mode 100644 index 000000000..c23e9dcae --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=armeabi-v7a +NDK_ALL_ABIS=armeabi-v7a +NDK_DEBUG=1 +APP_PLATFORM=android-14 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/ndkBuild_build_output.txt new file mode 100644 index 000000000..d1905027a --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/armeabi-v7a/ndkBuild_build_output.txt @@ -0,0 +1,470 @@ +$TARGET_ARCH_ABI is [armeabi-v7a] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a +echo [armeabi-v7a] "Gdbserver ": "[arm-linux-androideabi] /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/gdbserver" +install -p /opt/android-sdk/ndk-bundle/prebuilt/android-arm/gdbserver/gdbserver /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/gdbserver +echo [armeabi-v7a] "Gdbsetup ": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/gdb.setup" +echo "set solib-search-path /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a" > /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/gdb.setup +echo "directory /opt/android-sdk/ndk-bundle/sysroot /opt/android-sdk/ndk-bundle/sources/android/native_app_glue /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport /opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.." >> /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [armeabi-v7a] "Compile++ arm ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [armeabi-v7a] "Compile++ arm ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [armeabi-v7a] "Compile++ arm ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [armeabi-v7a] "Compile++ arm ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [armeabi-v7a] "Compile++ arm ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [armeabi-v7a] "Compile++ arm ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [armeabi-v7a] "Compile++ arm ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [armeabi-v7a] "Compile++ arm ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [armeabi-v7a] "Compile++ arm ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [armeabi-v7a] "Compile++ arm ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [armeabi-v7a] "Compile++ arm ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [armeabi-v7a] "Compile++ arm ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [armeabi-v7a] "Compile++ arm ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [armeabi-v7a] "Compile++ arm ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [armeabi-v7a] "Compile++ arm ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [armeabi-v7a] "Compile++ arm ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [armeabi-v7a] "Compile++ arm ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [armeabi-v7a] "Compile++ arm ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [armeabi-v7a] "Compile++ arm ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [armeabi-v7a] "Compile++ arm ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [armeabi-v7a] "Compile++ arm ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [armeabi-v7a] "Compile++ arm ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna +echo [armeabi-v7a] "Compile++ arm ": "dc <= blockmanager.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= decoder.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= shil.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM +echo [armeabi-v7a] "Compile++ arm ": "dc <= rec_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/rec_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-ARM/rec_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/rec_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [armeabi-v7a] "Compile++ arm ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [armeabi-v7a] "Compile++ arm ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [armeabi-v7a] "Compile arm ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [armeabi-v7a] "Compile arm ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [armeabi-v7a] "Compile arm ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [armeabi-v7a] "Compile arm ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [armeabi-v7a] "Compile arm ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [armeabi-v7a] "Compile arm ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [armeabi-v7a] "Compile arm ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [armeabi-v7a] "Compile arm ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [armeabi-v7a] "Compile arm ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [armeabi-v7a] "Compile arm ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [armeabi-v7a] "Compile arm ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [armeabi-v7a] "Compile arm ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [armeabi-v7a] "Compile arm ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [armeabi-v7a] "Compile arm ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [armeabi-v7a] "Compile arm ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [armeabi-v7a] "Compile arm ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [armeabi-v7a] "Compile arm ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [armeabi-v7a] "Compile arm ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [armeabi-v7a] "Compile arm ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [armeabi-v7a] "Compile arm ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [armeabi-v7a] "Compile arm ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [armeabi-v7a] "Compile arm ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [armeabi-v7a] "Compile arm ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [armeabi-v7a] "Compile arm ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [armeabi-v7a] "Compile arm ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [armeabi-v7a] "Compile arm ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [armeabi-v7a] "Compile arm ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [armeabi-v7a] "Compile arm ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [armeabi-v7a] "Compile arm ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [armeabi-v7a] "Compile arm ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [armeabi-v7a] "Compile arm ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [armeabi-v7a] "Compile arm ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [armeabi-v7a] "Compile arm ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [armeabi-v7a] "Compile arm ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [armeabi-v7a] "Compile arm ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [armeabi-v7a] "Compile arm ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [armeabi-v7a] "Compile arm ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +echo [armeabi-v7a] "Compile arm ": "dc <= ngen_arm.S" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/ngen_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -fvisibility=hidden -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-ARM/ngen_arm.S -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/ngen_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [armeabi-v7a] "Compile++ arm ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/armeabi-v7a +echo [armeabi-v7a] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-arm /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/rec_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/ngen_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/armeabi-v7a/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -no-canonical-prefixes -target armv7-none-linux-androideabi14 -Wl,--fix-cortex-a8 -Wl,--gc-sections,--icf=safe -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-arm/usr/lib -llog -lGLESv2 -lEGL -lz -Wl,--no-warn-shared-textrel -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libdc.so +echo [armeabi-v7a] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [armeabi-v7a] "Compile thumb ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/android_native_app_glue +echo [armeabi-v7a] "Compile thumb ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [armeabi-v7a] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [armeabi-v7a] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-arm /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -no-canonical-prefixes -target armv7-none-linux-androideabi14 -Wl,--fix-cortex-a8 -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-arm/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libsexplay.so +echo [armeabi-v7a] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/armeabi-v7a/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/android_gradle_build.json new file mode 100644 index 000000000..de0ffd3a4 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/android_gradle_build.json @@ -0,0 +1,846 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dmips NDK_ALL_ABIS\u003dmips NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib clean" + ], + "libraries": { + "android_native_app_glue-debug-mips": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dmips NDK_ALL_ABIS\u003dmips NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libandroid_native_app_glue.a", + "toolchain": "toolchain-mips", + "abi": "mips", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libandroid_native_app_glue.a" + }, + "sexplay-debug-mips": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dmips NDK_ALL_ABIS\u003dmips NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libsexplay.so", + "toolchain": "toolchain-mips", + "abi": "mips", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libsexplay.so" + }, + "dc-debug-mips": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dmips NDK_ALL_ABIS\u003dmips NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libdc.so", + "toolchain": "toolchain-mips", + "abi": "mips", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libdc.so" + } + }, + "toolchains": { + "toolchain-mips": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/ndkBuild_build_command.txt new file mode 100644 index 000000000..da00d8479 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=mips +NDK_ALL_ABIS=mips +NDK_DEBUG=1 +APP_PLATFORM=android-14 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/ndkBuild_build_output.txt new file mode 100644 index 000000000..a256b9cef --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/mips/ndkBuild_build_output.txt @@ -0,0 +1,456 @@ +$TARGET_ARCH_ABI is [mips] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips +echo [mips] "Gdbserver ": "[mips64el-linux-android] /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/gdbserver" +install -p /opt/android-sdk/ndk-bundle/prebuilt/android-mips/gdbserver/gdbserver /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/gdbserver +echo [mips] "Gdbsetup ": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/gdb.setup" +echo "set solib-search-path /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips" > /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/gdb.setup +echo "directory /opt/android-sdk/ndk-bundle/sysroot /opt/android-sdk/ndk-bundle/sources/android/native_app_glue /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport /opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.." >> /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [mips] "Compile++ ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [mips] "Compile++ ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [mips] "Compile++ ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [mips] "Compile++ ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [mips] "Compile++ ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [mips] "Compile++ ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [mips] "Compile++ ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [mips] "Compile++ ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [mips] "Compile++ ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [mips] "Compile++ ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [mips] "Compile++ ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [mips] "Compile++ ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [mips] "Compile++ ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [mips] "Compile++ ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [mips] "Compile++ ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [mips] "Compile++ ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [mips] "Compile++ ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [mips] "Compile++ ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [mips] "Compile++ ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [mips] "Compile++ ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [mips] "Compile++ ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [mips] "Compile++ ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [mips] "Compile++ ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [mips] "Compile++ ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [mips] "Compile++ ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [mips] "Compile++ ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [mips] "Compile++ ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [mips] "Compile++ ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [mips] "Compile++ ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [mips] "Compile++ ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [mips] "Compile++ ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [mips] "Compile++ ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [mips] "Compile++ ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [mips] "Compile++ ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [mips] "Compile++ ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [mips] "Compile++ ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [mips] "Compile++ ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [mips] "Compile++ ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [mips] "Compile++ ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [mips] "Compile++ ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [mips] "Compile++ ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [mips] "Compile++ ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [mips] "Compile++ ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [mips] "Compile++ ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [mips] "Compile++ ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [mips] "Compile++ ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [mips] "Compile++ ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [mips] "Compile++ ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [mips] "Compile++ ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [mips] "Compile++ ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [mips] "Compile++ ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [mips] "Compile++ ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [mips] "Compile++ ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [mips] "Compile++ ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [mips] "Compile++ ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [mips] "Compile++ ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [mips] "Compile++ ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [mips] "Compile++ ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [mips] "Compile++ ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [mips] "Compile++ ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [mips] "Compile++ ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [mips] "Compile++ ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [mips] "Compile++ ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [mips] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [mips] "Compile++ ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [mips] "Compile++ ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [mips] "Compile++ ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [mips] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [mips] "Compile++ ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [mips] "Compile++ ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [mips] "Compile++ ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [mips] "Compile++ ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [mips] "Compile++ ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [mips] "Compile++ ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [mips] "Compile++ ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [mips] "Compile++ ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [mips] "Compile++ ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [mips] "Compile++ ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [mips] "Compile++ ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [mips] "Compile++ ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [mips] "Compile++ ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [mips] "Compile++ ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [mips] "Compile++ ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [mips] "Compile++ ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [mips] "Compile++ ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [mips] "Compile++ ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [mips] "Compile++ ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [mips] "Compile++ ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [mips] "Compile++ ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [mips] "Compile++ ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [mips] "Compile ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [mips] "Compile ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [mips] "Compile ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [mips] "Compile ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [mips] "Compile ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [mips] "Compile ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [mips] "Compile ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [mips] "Compile ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [mips] "Compile ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [mips] "Compile ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [mips] "Compile ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [mips] "Compile ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [mips] "Compile ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [mips] "Compile ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [mips] "Compile ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [mips] "Compile ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [mips] "Compile ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [mips] "Compile ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [mips] "Compile ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [mips] "Compile ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [mips] "Compile ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [mips] "Compile ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [mips] "Compile ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [mips] "Compile ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [mips] "Compile ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [mips] "Compile ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [mips] "Compile ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [mips] "Compile ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [mips] "Compile ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [mips] "Compile ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [mips] "Compile ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [mips] "Compile ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [mips] "Compile ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [mips] "Compile ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [mips] "Compile ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [mips] "Compile ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [mips] "Compile ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [mips] "Compile ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [mips] "Compile ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [mips] "Compile ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [mips] "Compile ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [mips] "Compile ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [mips] "Compile ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [mips] "Compile ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [mips] "Compile ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [mips] "Compile ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [mips] "Compile ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [mips] "Compile ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [mips] "Compile ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [mips] "Compile ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [mips] "Compile ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [mips] "Compile ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [mips] "Compile ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [mips] "Compile ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [mips] "Compile ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [mips] "Compile ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [mips] "Compile ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [mips] "Compile ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [mips] "Compile ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [mips] "Compile ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [mips] "Compile ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [mips] "Compile ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [mips] "Compile ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [mips] "Compile ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [mips] "Compile ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [mips] "Compile ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [mips] "Compile ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [mips] "Compile ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [mips] "Compile ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [mips] "Compile ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [mips] "Compile ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [mips] "Compile ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [mips] "Compile ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [mips] "Compile ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [mips] "Compile ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [mips] "Compile ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [mips] "Compile ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [mips] "Compile ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [mips] "Compile ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [mips] "Compile ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [mips] "Compile ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [mips] "Compile ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [mips] "Compile ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [mips] "Compile ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [mips] "Compile ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [mips] "Compile ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [mips] "Compile ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [mips] "Compile ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [mips] "Compile ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [mips] "Compile ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [mips] "Compile ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [mips] "Compile ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [mips] "Compile ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [mips] "Compile ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [mips] "Compile ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [mips] "Compile ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [mips] "Compile ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [mips] "Compile ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [mips] "Compile ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [mips] "Compile ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [mips] "Compile ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [mips] "Compile ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [mips] "Compile ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [mips] "Compile ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [mips] "Compile++ ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [mips] "Compile++ ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/mips +echo [mips] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-mips /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/mips/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -L/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/lib/gcc/mips64el-linux-android/4.9.x/32/mips-r1 -target mipsel-none-linux-android -no-canonical-prefixes -mips32 -Wl,--gc-sections -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-mips/usr/lib -llog -lGLESv2 -lEGL -lz -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libdc.so +echo [mips] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/bin/mips64el-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [mips] "Compile ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/android_native_app_glue +echo [mips] "Compile ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [mips] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/bin/mips64el-linux-android-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [mips] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-mips /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -L/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/lib/gcc/mips64el-linux-android/4.9.x/32/mips-r1 -target mipsel-none-linux-android -no-canonical-prefixes -mips32 -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-mips/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libsexplay.so +echo [mips] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/mips/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/bin/mips64el-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/mips/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/android_gradle_build.json new file mode 100644 index 000000000..1bce7f53d --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/android_gradle_build.json @@ -0,0 +1,883 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86 NDK_ALL_ABIS\u003dx86 NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib clean" + ], + "libraries": { + "dc-debug-x86": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86 NDK_ALL_ABIS\u003dx86 NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libdc.so", + "toolchain": "toolchain-x86", + "abi": "x86", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/emitter/x86_emitter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_lin86_asm.S", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-fvisibility\u003dhidden\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_asm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_il.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libdc.so" + }, + "sexplay-debug-x86": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86 NDK_ALL_ABIS\u003dx86 NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libsexplay.so", + "toolchain": "toolchain-x86", + "abi": "x86", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libsexplay.so" + }, + "android_native_app_glue-debug-x86": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86 NDK_ALL_ABIS\u003dx86 NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libandroid_native_app_glue.a", + "toolchain": "toolchain-x86", + "abi": "x86", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libandroid_native_app_glue.a" + } + }, + "toolchains": { + "toolchain-x86": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "S", + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/ndkBuild_build_command.txt new file mode 100644 index 000000000..b5d549942 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=x86 +NDK_ALL_ABIS=x86 +NDK_DEBUG=1 +APP_PLATFORM=android-14 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/ndkBuild_build_output.txt new file mode 100644 index 000000000..c6d7a2a07 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86/ndkBuild_build_output.txt @@ -0,0 +1,477 @@ +$TARGET_ARCH_ABI is [x86] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86 +echo [x86] "Gdbserver ": "[i686-linux-android] /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/gdbserver" +install -p /opt/android-sdk/ndk-bundle/prebuilt/android-x86/gdbserver/gdbserver /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/gdbserver +echo [x86] "Gdbsetup ": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/gdb.setup" +echo "set solib-search-path /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86" > /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/gdb.setup +echo "directory /opt/android-sdk/ndk-bundle/sysroot /opt/android-sdk/ndk-bundle/sources/android/native_app_glue /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport /opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.." >> /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [x86] "Compile++ ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [x86] "Compile++ ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [x86] "Compile++ ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [x86] "Compile++ ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [x86] "Compile++ ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [x86] "Compile++ ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [x86] "Compile++ ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [x86] "Compile++ ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [x86] "Compile++ ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [x86] "Compile++ ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [x86] "Compile++ ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [x86] "Compile++ ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [x86] "Compile++ ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [x86] "Compile++ ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [x86] "Compile++ ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [x86] "Compile++ ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [x86] "Compile++ ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [x86] "Compile++ ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [x86] "Compile++ ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [x86] "Compile++ ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [x86] "Compile++ ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [x86] "Compile++ ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [x86] "Compile++ ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [x86] "Compile++ ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [x86] "Compile++ ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [x86] "Compile++ ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [x86] "Compile++ ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [x86] "Compile++ ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [x86] "Compile++ ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [x86] "Compile++ ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [x86] "Compile++ ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [x86] "Compile++ ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [x86] "Compile++ ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [x86] "Compile++ ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [x86] "Compile++ ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [x86] "Compile++ ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [x86] "Compile++ ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [x86] "Compile++ ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [x86] "Compile++ ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [x86] "Compile++ ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [x86] "Compile++ ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [x86] "Compile++ ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [x86] "Compile++ ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [x86] "Compile++ ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [x86] "Compile++ ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [x86] "Compile++ ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [x86] "Compile++ ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [x86] "Compile++ ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [x86] "Compile++ ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [x86] "Compile++ ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [x86] "Compile++ ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [x86] "Compile++ ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [x86] "Compile++ ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [x86] "Compile++ ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [x86] "Compile++ ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [x86] "Compile++ ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [x86] "Compile++ ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [x86] "Compile++ ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [x86] "Compile++ ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [x86] "Compile++ ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [x86] "Compile++ ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [x86] "Compile++ ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [x86] "Compile++ ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [x86] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [x86] "Compile++ ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [x86] "Compile++ ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [x86] "Compile++ ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [x86] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [x86] "Compile++ ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [x86] "Compile++ ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [x86] "Compile++ ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [x86] "Compile++ ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [x86] "Compile++ ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [x86] "Compile++ ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [x86] "Compile++ ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [x86] "Compile++ ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [x86] "Compile++ ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [x86] "Compile++ ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [x86] "Compile++ ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [x86] "Compile++ ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [x86] "Compile++ ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [x86] "Compile++ ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [x86] "Compile++ ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [x86] "Compile++ ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [x86] "Compile++ ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [x86] "Compile++ ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna +echo [x86] "Compile++ ": "dc <= blockmanager.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o +echo [x86] "Compile++ ": "dc <= decoder.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o +echo [x86] "Compile++ ": "dc <= driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o +echo [x86] "Compile++ ": "dc <= shil.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86 +echo [x86] "Compile++ ": "dc <= rec_x86_asm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_asm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_asm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_asm.o +echo [x86] "Compile++ ": "dc <= rec_x86_driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_driver.o +echo [x86] "Compile++ ": "dc <= rec_x86_il.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_il.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_il.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_il.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/emitter +echo [x86] "Compile++ ": "dc <= x86_emitter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/emitter/x86_emitter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/emitter/x86_emitter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/emitter/x86_emitter.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [x86] "Compile++ ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [x86] "Compile++ ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [x86] "Compile++ ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [x86] "Compile++ ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [x86] "Compile ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [x86] "Compile ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [x86] "Compile ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [x86] "Compile ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [x86] "Compile ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [x86] "Compile ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [x86] "Compile ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [x86] "Compile ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [x86] "Compile ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [x86] "Compile ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [x86] "Compile ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [x86] "Compile ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [x86] "Compile ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [x86] "Compile ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [x86] "Compile ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [x86] "Compile ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [x86] "Compile ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [x86] "Compile ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [x86] "Compile ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [x86] "Compile ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [x86] "Compile ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [x86] "Compile ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [x86] "Compile ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [x86] "Compile ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [x86] "Compile ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [x86] "Compile ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [x86] "Compile ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [x86] "Compile ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [x86] "Compile ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [x86] "Compile ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [x86] "Compile ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [x86] "Compile ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [x86] "Compile ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [x86] "Compile ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [x86] "Compile ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [x86] "Compile ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [x86] "Compile ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [x86] "Compile ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [x86] "Compile ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [x86] "Compile ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [x86] "Compile ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [x86] "Compile ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [x86] "Compile ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [x86] "Compile ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [x86] "Compile ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [x86] "Compile ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [x86] "Compile ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [x86] "Compile ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [x86] "Compile ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [x86] "Compile ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [x86] "Compile ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [x86] "Compile ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [x86] "Compile ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [x86] "Compile ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [x86] "Compile ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [x86] "Compile ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [x86] "Compile ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [x86] "Compile ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [x86] "Compile ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [x86] "Compile ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [x86] "Compile ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [x86] "Compile ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [x86] "Compile ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [x86] "Compile ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [x86] "Compile ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [x86] "Compile ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [x86] "Compile ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [x86] "Compile ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [x86] "Compile ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [x86] "Compile ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [x86] "Compile ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [x86] "Compile ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [x86] "Compile ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [x86] "Compile ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [x86] "Compile ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [x86] "Compile ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [x86] "Compile ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [x86] "Compile ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [x86] "Compile ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [x86] "Compile ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [x86] "Compile ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [x86] "Compile ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [x86] "Compile ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [x86] "Compile ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [x86] "Compile ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [x86] "Compile ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [x86] "Compile ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [x86] "Compile ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [x86] "Compile ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [x86] "Compile ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [x86] "Compile ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [x86] "Compile ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [x86] "Compile ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [x86] "Compile ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [x86] "Compile ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [x86] "Compile ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [x86] "Compile ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [x86] "Compile ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [x86] "Compile ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [x86] "Compile ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [x86] "Compile ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [x86] "Compile ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [x86] "Compile ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [x86] "Compile ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +echo [x86] "Compile ": "dc <= rec_lin86_asm.S" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_lin86_asm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -fvisibility=hidden -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_lin86_asm.S -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_lin86_asm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [x86] "Compile++ ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [x86] "Compile++ ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86 +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/x86 +echo [x86] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-x86 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_asm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_il.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/emitter/x86_emitter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_lin86_asm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/x86/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -no-canonical-prefixes -Wl,--gc-sections,--icf=safe -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-x86/usr/lib -llog -lGLESv2 -lEGL -lz -Wl,--no-warn-shared-textrel -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libdc.so +echo [x86] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [x86] "Compile ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/android_native_app_glue +echo [x86] "Compile ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [x86] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [x86] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-x86 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -no-canonical-prefixes -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-x86/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libsexplay.so +echo [x86] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/android_gradle_build.json new file mode 100644 index 000000000..b570d5b79 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/android_gradle_build.json @@ -0,0 +1,862 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86_64 NDK_ALL_ABIS\u003dx86_64 NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib clean" + ], + "libraries": { + "android_native_app_glue-debug-x86_64": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86_64 NDK_ALL_ABIS\u003dx86_64 NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libandroid_native_app_glue.a", + "toolchain": "toolchain-x86_64", + "abi": "x86_64", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libandroid_native_app_glue.a" + }, + "dc-debug-x86_64": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86_64 NDK_ALL_ABIS\u003dx86_64 NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libdc.so", + "toolchain": "toolchain-x86_64", + "abi": "x86_64", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libdc.so" + }, + "sexplay-debug-x86_64": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86_64 NDK_ALL_ABIS\u003dx86_64 NDK_DEBUG\u003d1 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libsexplay.so", + "toolchain": "toolchain-x86_64", + "abi": "x86_64", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O0\" \"-UNDEBUG\" \"-fno-limit-debug-info\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libsexplay.so" + } + }, + "toolchains": { + "toolchain-x86_64": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/ndkBuild_build_command.txt new file mode 100644 index 000000000..b127c6cd5 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=x86_64 +NDK_ALL_ABIS=x86_64 +NDK_DEBUG=1 +APP_PLATFORM=android-21 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/ndkBuild_build_output.txt new file mode 100644 index 000000000..ed74472cc --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/debug/x86_64/ndkBuild_build_output.txt @@ -0,0 +1,465 @@ +$TARGET_ARCH_ABI is [x86_64] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64 +echo [x86_64] "Gdbserver ": "[x86_64-linux-android] /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/gdbserver" +install -p /opt/android-sdk/ndk-bundle/prebuilt/android-x86_64/gdbserver/gdbserver /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/gdbserver +echo [x86_64] "Gdbsetup ": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/gdb.setup" +echo "set solib-search-path /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64" > /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/gdb.setup +echo "directory /opt/android-sdk/ndk-bundle/sysroot /opt/android-sdk/ndk-bundle/sources/android/native_app_glue /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport /opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.." >> /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [x86_64] "Compile++ ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [x86_64] "Compile++ ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [x86_64] "Compile++ ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [x86_64] "Compile++ ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [x86_64] "Compile++ ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [x86_64] "Compile++ ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [x86_64] "Compile++ ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [x86_64] "Compile++ ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [x86_64] "Compile++ ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [x86_64] "Compile++ ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [x86_64] "Compile++ ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [x86_64] "Compile++ ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [x86_64] "Compile++ ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [x86_64] "Compile++ ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [x86_64] "Compile++ ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [x86_64] "Compile++ ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [x86_64] "Compile++ ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [x86_64] "Compile++ ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [x86_64] "Compile++ ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [x86_64] "Compile++ ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [x86_64] "Compile++ ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [x86_64] "Compile++ ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [x86_64] "Compile++ ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [x86_64] "Compile++ ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [x86_64] "Compile++ ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [x86_64] "Compile++ ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [x86_64] "Compile++ ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [x86_64] "Compile++ ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [x86_64] "Compile++ ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [x86_64] "Compile++ ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [x86_64] "Compile++ ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [x86_64] "Compile++ ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [x86_64] "Compile++ ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [x86_64] "Compile++ ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [x86_64] "Compile++ ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [x86_64] "Compile++ ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [x86_64] "Compile++ ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [x86_64] "Compile++ ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [x86_64] "Compile++ ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [x86_64] "Compile++ ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [x86_64] "Compile++ ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [x86_64] "Compile++ ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [x86_64] "Compile++ ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [x86_64] "Compile++ ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [x86_64] "Compile++ ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [x86_64] "Compile++ ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [x86_64] "Compile++ ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [x86_64] "Compile++ ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [x86_64] "Compile++ ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [x86_64] "Compile++ ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [x86_64] "Compile++ ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [x86_64] "Compile++ ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [x86_64] "Compile++ ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [x86_64] "Compile++ ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [x86_64] "Compile++ ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [x86_64] "Compile++ ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [x86_64] "Compile++ ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [x86_64] "Compile++ ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [x86_64] "Compile++ ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [x86_64] "Compile++ ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [x86_64] "Compile++ ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [x86_64] "Compile++ ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [x86_64] "Compile++ ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [x86_64] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [x86_64] "Compile++ ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [x86_64] "Compile++ ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [x86_64] "Compile++ ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [x86_64] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [x86_64] "Compile++ ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [x86_64] "Compile++ ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [x86_64] "Compile++ ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [x86_64] "Compile++ ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [x86_64] "Compile++ ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [x86_64] "Compile++ ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [x86_64] "Compile++ ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [x86_64] "Compile++ ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [x86_64] "Compile++ ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [x86_64] "Compile++ ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [x86_64] "Compile++ ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [x86_64] "Compile++ ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [x86_64] "Compile++ ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [x86_64] "Compile++ ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [x86_64] "Compile++ ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [x86_64] "Compile++ ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [x86_64] "Compile++ ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [x86_64] "Compile++ ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna +echo [x86_64] "Compile++ ": "dc <= blockmanager.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o +echo [x86_64] "Compile++ ": "dc <= decoder.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o +echo [x86_64] "Compile++ ": "dc <= driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o +echo [x86_64] "Compile++ ": "dc <= shil.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [x86_64] "Compile++ ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [x86_64] "Compile++ ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [x86_64] "Compile++ ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [x86_64] "Compile++ ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [x86_64] "Compile ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [x86_64] "Compile ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [x86_64] "Compile ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [x86_64] "Compile ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [x86_64] "Compile ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [x86_64] "Compile ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [x86_64] "Compile ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [x86_64] "Compile ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [x86_64] "Compile ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [x86_64] "Compile ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [x86_64] "Compile ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [x86_64] "Compile ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [x86_64] "Compile ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [x86_64] "Compile ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [x86_64] "Compile ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [x86_64] "Compile ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [x86_64] "Compile ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [x86_64] "Compile ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [x86_64] "Compile ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [x86_64] "Compile ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [x86_64] "Compile ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [x86_64] "Compile ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [x86_64] "Compile ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [x86_64] "Compile ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [x86_64] "Compile ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [x86_64] "Compile ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [x86_64] "Compile ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [x86_64] "Compile ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [x86_64] "Compile ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [x86_64] "Compile ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [x86_64] "Compile ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [x86_64] "Compile ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [x86_64] "Compile ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [x86_64] "Compile ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [x86_64] "Compile ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [x86_64] "Compile ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [x86_64] "Compile ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [x86_64] "Compile ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [x86_64] "Compile ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [x86_64] "Compile ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [x86_64] "Compile ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [x86_64] "Compile ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [x86_64] "Compile ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [x86_64] "Compile ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [x86_64] "Compile ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [x86_64] "Compile ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [x86_64] "Compile ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [x86_64] "Compile ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [x86_64] "Compile ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [x86_64] "Compile ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [x86_64] "Compile ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [x86_64] "Compile ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [x86_64] "Compile ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [x86_64] "Compile ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [x86_64] "Compile ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [x86_64] "Compile ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [x86_64] "Compile ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [x86_64] "Compile ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [x86_64] "Compile ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [x86_64] "Compile ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [x86_64] "Compile ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [x86_64] "Compile ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [x86_64] "Compile ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [x86_64] "Compile ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [x86_64] "Compile ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [x86_64] "Compile ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [x86_64] "Compile ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [x86_64] "Compile ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [x86_64] "Compile ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [x86_64] "Compile ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [x86_64] "Compile ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [x86_64] "Compile ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [x86_64] "Compile ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [x86_64] "Compile ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [x86_64] "Compile ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [x86_64] "Compile ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [x86_64] "Compile ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [x86_64] "Compile ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [x86_64] "Compile ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [x86_64] "Compile ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [x86_64] "Compile ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [x86_64] "Compile ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [x86_64] "Compile ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [x86_64] "Compile ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [x86_64] "Compile ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [x86_64] "Compile ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [x86_64] "Compile ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [x86_64] "Compile ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [x86_64] "Compile ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [x86_64] "Compile ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [x86_64] "Compile ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [x86_64] "Compile ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [x86_64] "Compile ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [x86_64] "Compile ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [x86_64] "Compile ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [x86_64] "Compile ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [x86_64] "Compile ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [x86_64] "Compile ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [x86_64] "Compile ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [x86_64] "Compile ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [x86_64] "Compile ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [x86_64] "Compile ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [x86_64] "Compile ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [x86_64] "Compile ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [x86_64] "Compile++ ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [x86_64] "Compile++ ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64 +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/x86_64 +echo [x86_64] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/x86_64/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -no-canonical-prefixes -Wl,--gc-sections,--icf=safe -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64/usr/lib64 -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64/usr/lib -llog -lGLESv2 -lEGL -lz -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libdc.so +echo [x86_64] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/x86_64-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [x86_64] "Compile ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=21 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/android_native_app_glue +echo [x86_64] "Compile ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O0 -UNDEBUG -fno-limit-debug-info -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=21 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [x86_64] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/x86_64-linux-android-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/android_native_app_glue/android_native_app_glue.o +echo [x86_64] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/objs-debug/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -no-canonical-prefixes -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64/usr/lib64 -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libsexplay.so +echo [x86_64] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/obj/local/x86_64/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/x86_64-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/debug/lib/x86_64/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/android_gradle_build.json new file mode 100644 index 000000000..c9fe31043 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/android_gradle_build.json @@ -0,0 +1,862 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darm64-v8a NDK_ALL_ABIS\u003darm64-v8a NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib clean" + ], + "libraries": { + "dc-release-arm64-v8a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darm64-v8a NDK_ALL_ABIS\u003darm64-v8a NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libdc.so", + "toolchain": "toolchain-arm64-v8a", + "abi": "arm64-v8a", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libdc.so" + }, + "sexplay-release-arm64-v8a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darm64-v8a NDK_ALL_ABIS\u003darm64-v8a NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libsexplay.so", + "toolchain": "toolchain-arm64-v8a", + "abi": "arm64-v8a", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libsexplay.so" + }, + "android_native_app_glue-release-arm64-v8a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darm64-v8a NDK_ALL_ABIS\u003darm64-v8a NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libandroid_native_app_glue.a", + "toolchain": "toolchain-arm64-v8a", + "abi": "arm64-v8a", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"aarch64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fpic\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libandroid_native_app_glue.a" + } + }, + "toolchains": { + "toolchain-arm64-v8a": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/ndkBuild_build_command.txt new file mode 100644 index 000000000..5932992f9 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=arm64-v8a +NDK_ALL_ABIS=arm64-v8a +NDK_DEBUG=0 +APP_PLATFORM=android-21 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/ndkBuild_build_output.txt new file mode 100644 index 000000000..abe996aff --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/arm64-v8a/ndkBuild_build_output.txt @@ -0,0 +1,460 @@ +$TARGET_ARCH_ABI is [arm64-v8a] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [arm64-v8a] "Compile++ ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [arm64-v8a] "Compile++ ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [arm64-v8a] "Compile++ ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [arm64-v8a] "Compile++ ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [arm64-v8a] "Compile++ ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [arm64-v8a] "Compile++ ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [arm64-v8a] "Compile++ ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [arm64-v8a] "Compile++ ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [arm64-v8a] "Compile++ ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [arm64-v8a] "Compile++ ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [arm64-v8a] "Compile++ ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [arm64-v8a] "Compile++ ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [arm64-v8a] "Compile++ ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [arm64-v8a] "Compile++ ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [arm64-v8a] "Compile++ ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [arm64-v8a] "Compile++ ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [arm64-v8a] "Compile++ ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [arm64-v8a] "Compile++ ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [arm64-v8a] "Compile++ ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [arm64-v8a] "Compile++ ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [arm64-v8a] "Compile++ ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [arm64-v8a] "Compile++ ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [arm64-v8a] "Compile++ ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [arm64-v8a] "Compile++ ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [arm64-v8a] "Compile++ ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [arm64-v8a] "Compile++ ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [arm64-v8a] "Compile++ ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [arm64-v8a] "Compile++ ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [arm64-v8a] "Compile++ ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [arm64-v8a] "Compile++ ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [arm64-v8a] "Compile++ ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [arm64-v8a] "Compile++ ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [arm64-v8a] "Compile++ ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [arm64-v8a] "Compile++ ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [arm64-v8a] "Compile++ ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [arm64-v8a] "Compile++ ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [arm64-v8a] "Compile++ ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [arm64-v8a] "Compile++ ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [arm64-v8a] "Compile++ ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [arm64-v8a] "Compile++ ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [arm64-v8a] "Compile++ ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [arm64-v8a] "Compile++ ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [arm64-v8a] "Compile++ ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [arm64-v8a] "Compile++ ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [arm64-v8a] "Compile++ ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [arm64-v8a] "Compile++ ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [arm64-v8a] "Compile++ ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [arm64-v8a] "Compile++ ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [arm64-v8a] "Compile++ ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [arm64-v8a] "Compile++ ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [arm64-v8a] "Compile++ ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [arm64-v8a] "Compile++ ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [arm64-v8a] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [arm64-v8a] "Compile++ ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [arm64-v8a] "Compile++ ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [arm64-v8a] "Compile++ ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [arm64-v8a] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [arm64-v8a] "Compile++ ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [arm64-v8a] "Compile++ ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [arm64-v8a] "Compile++ ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [arm64-v8a] "Compile++ ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [arm64-v8a] "Compile++ ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [arm64-v8a] "Compile++ ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [arm64-v8a] "Compile++ ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [arm64-v8a] "Compile++ ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [arm64-v8a] "Compile++ ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [arm64-v8a] "Compile++ ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [arm64-v8a] "Compile++ ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [arm64-v8a] "Compile++ ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [arm64-v8a] "Compile++ ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [arm64-v8a] "Compile++ ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [arm64-v8a] "Compile++ ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [arm64-v8a] "Compile++ ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [arm64-v8a] "Compile++ ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [arm64-v8a] "Compile++ ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna +echo [arm64-v8a] "Compile++ ": "dc <= blockmanager.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o +echo [arm64-v8a] "Compile++ ": "dc <= decoder.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o +echo [arm64-v8a] "Compile++ ": "dc <= driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o +echo [arm64-v8a] "Compile++ ": "dc <= shil.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [arm64-v8a] "Compile++ ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [arm64-v8a] "Compile++ ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [arm64-v8a] "Compile++ ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [arm64-v8a] "Compile++ ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [arm64-v8a] "Compile ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [arm64-v8a] "Compile ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [arm64-v8a] "Compile ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [arm64-v8a] "Compile ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [arm64-v8a] "Compile ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [arm64-v8a] "Compile ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [arm64-v8a] "Compile ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [arm64-v8a] "Compile ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [arm64-v8a] "Compile ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [arm64-v8a] "Compile ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [arm64-v8a] "Compile ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [arm64-v8a] "Compile ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [arm64-v8a] "Compile ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [arm64-v8a] "Compile ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [arm64-v8a] "Compile ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [arm64-v8a] "Compile ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [arm64-v8a] "Compile ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [arm64-v8a] "Compile ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [arm64-v8a] "Compile ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [arm64-v8a] "Compile ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [arm64-v8a] "Compile ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [arm64-v8a] "Compile ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [arm64-v8a] "Compile ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [arm64-v8a] "Compile ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [arm64-v8a] "Compile ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [arm64-v8a] "Compile ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [arm64-v8a] "Compile ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [arm64-v8a] "Compile ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [arm64-v8a] "Compile ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [arm64-v8a] "Compile ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [arm64-v8a] "Compile ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [arm64-v8a] "Compile ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [arm64-v8a] "Compile ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [arm64-v8a] "Compile ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [arm64-v8a] "Compile ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [arm64-v8a] "Compile ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [arm64-v8a] "Compile ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [arm64-v8a] "Compile ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [arm64-v8a] "Compile ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [arm64-v8a] "Compile ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [arm64-v8a] "Compile ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [arm64-v8a] "Compile ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [arm64-v8a] "Compile ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [arm64-v8a] "Compile ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [arm64-v8a] "Compile ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [arm64-v8a] "Compile ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [arm64-v8a] "Compile ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [arm64-v8a] "Compile ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [arm64-v8a] "Compile ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [arm64-v8a] "Compile ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [arm64-v8a] "Compile ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [arm64-v8a] "Compile ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [arm64-v8a] "Compile ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [arm64-v8a] "Compile ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [arm64-v8a] "Compile ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [arm64-v8a] "Compile ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [arm64-v8a] "Compile ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [arm64-v8a] "Compile ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [arm64-v8a] "Compile ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [arm64-v8a] "Compile ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [arm64-v8a] "Compile ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [arm64-v8a] "Compile ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [arm64-v8a] "Compile ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [arm64-v8a] "Compile ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [arm64-v8a] "Compile ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [arm64-v8a] "Compile ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [arm64-v8a] "Compile ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [arm64-v8a] "Compile ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [arm64-v8a] "Compile ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [arm64-v8a] "Compile ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [arm64-v8a] "Compile ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [arm64-v8a] "Compile ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [arm64-v8a] "Compile ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [arm64-v8a] "Compile ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [arm64-v8a] "Compile ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [arm64-v8a] "Compile ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [arm64-v8a] "Compile ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [arm64-v8a] "Compile ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [arm64-v8a] "Compile ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [arm64-v8a] "Compile ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [arm64-v8a] "Compile ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [arm64-v8a] "Compile ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [arm64-v8a] "Compile ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [arm64-v8a] "Compile ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [arm64-v8a] "Compile ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [arm64-v8a] "Compile ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [arm64-v8a] "Compile ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [arm64-v8a] "Compile ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [arm64-v8a] "Compile ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [arm64-v8a] "Compile ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [arm64-v8a] "Compile ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [arm64-v8a] "Compile++ ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [arm64-v8a] "Compile++ ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/arm64-v8a +echo [arm64-v8a] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-21/arch-arm64 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/arm64-v8a/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -no-canonical-prefixes -Wl,--gc-sections,--icf=safe -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-arm64/usr/lib -llog -lGLESv2 -lEGL -lz -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a +echo [arm64-v8a] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [arm64-v8a] "Compile ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=21 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/android_native_app_glue +echo [arm64-v8a] "Compile ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fpic -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=21 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/aarch64-linux-android -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/android_native_app_glue/android_native_app_glue.o +echo [arm64-v8a] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/android_native_app_glue/android_native_app_glue.o +echo [arm64-v8a] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-21/arch-arm64 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64 -target aarch64-none-linux-android -no-canonical-prefixes -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-arm64/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libsexplay.so +echo [arm64-v8a] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/arm64-v8a/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/arm64-v8a/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/android_gradle_build.json new file mode 100644 index 000000000..3a0c2bd3f --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/android_gradle_build.json @@ -0,0 +1,871 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darmeabi-v7a NDK_ALL_ABIS\u003darmeabi-v7a NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib clean" + ], + "libraries": { + "android_native_app_glue-release-armeabi-v7a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darmeabi-v7a NDK_ALL_ABIS\u003darmeabi-v7a NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libandroid_native_app_glue.a", + "toolchain": "toolchain-armeabi-v7a", + "abi": "armeabi-v7a", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-mthumb\" \"-Os\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libandroid_native_app_glue.a" + }, + "dc-release-armeabi-v7a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darmeabi-v7a NDK_ALL_ABIS\u003darmeabi-v7a NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libdc.so", + "toolchain": "toolchain-armeabi-v7a", + "abi": "armeabi-v7a", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-ARM/ngen_arm.S", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-fvisibility\u003dhidden\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-ARM/rec_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-fno-exceptions\" \"-fno-rtti\" \"-marm\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-march\u003darmv7-a\" \"-mtune\u003dcortex-a9\" \"-mfpu\u003dvfpv3-d16\" \"-DTARGET_LINUX_ARMELv7\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libdc.so" + }, + "sexplay-release-armeabi-v7a": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003darmeabi-v7a NDK_ALL_ABIS\u003darmeabi-v7a NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libsexplay.so", + "toolchain": "toolchain-armeabi-v7a", + "abi": "armeabi-v7a", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-mthumb\" \"-Os\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-fno-integrated-as\" \"-g\" \"-target\" \"armv7-none-linux-androideabi14\" \"-march\u003darmv7-a\" \"-mfloat-abi\u003dsoftfp\" \"-mfpu\u003dvfpv3-d16\" \"-mthumb\" \"-Os\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libsexplay.so" + } + }, + "toolchains": { + "toolchain-armeabi-v7a": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "S", + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/ndkBuild_build_command.txt new file mode 100644 index 000000000..c247297ac --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=armeabi-v7a +NDK_ALL_ABIS=armeabi-v7a +NDK_DEBUG=0 +APP_PLATFORM=android-14 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/ndkBuild_build_output.txt new file mode 100644 index 000000000..4a32cc84b --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/armeabi-v7a/ndkBuild_build_output.txt @@ -0,0 +1,465 @@ +$TARGET_ARCH_ABI is [armeabi-v7a] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [armeabi-v7a] "Compile++ arm ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [armeabi-v7a] "Compile++ arm ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [armeabi-v7a] "Compile++ arm ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [armeabi-v7a] "Compile++ arm ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [armeabi-v7a] "Compile++ arm ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [armeabi-v7a] "Compile++ arm ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [armeabi-v7a] "Compile++ arm ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [armeabi-v7a] "Compile++ arm ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [armeabi-v7a] "Compile++ arm ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [armeabi-v7a] "Compile++ arm ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [armeabi-v7a] "Compile++ arm ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [armeabi-v7a] "Compile++ arm ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [armeabi-v7a] "Compile++ arm ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [armeabi-v7a] "Compile++ arm ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [armeabi-v7a] "Compile++ arm ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [armeabi-v7a] "Compile++ arm ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [armeabi-v7a] "Compile++ arm ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [armeabi-v7a] "Compile++ arm ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [armeabi-v7a] "Compile++ arm ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [armeabi-v7a] "Compile++ arm ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [armeabi-v7a] "Compile++ arm ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [armeabi-v7a] "Compile++ arm ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna +echo [armeabi-v7a] "Compile++ arm ": "dc <= blockmanager.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= decoder.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= shil.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM +echo [armeabi-v7a] "Compile++ arm ": "dc <= rec_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/rec_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-ARM/rec_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/rec_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [armeabi-v7a] "Compile++ arm ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [armeabi-v7a] "Compile++ arm ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [armeabi-v7a] "Compile arm ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [armeabi-v7a] "Compile arm ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [armeabi-v7a] "Compile arm ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [armeabi-v7a] "Compile arm ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [armeabi-v7a] "Compile arm ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [armeabi-v7a] "Compile arm ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [armeabi-v7a] "Compile arm ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [armeabi-v7a] "Compile arm ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [armeabi-v7a] "Compile arm ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [armeabi-v7a] "Compile arm ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [armeabi-v7a] "Compile arm ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [armeabi-v7a] "Compile arm ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [armeabi-v7a] "Compile arm ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [armeabi-v7a] "Compile arm ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [armeabi-v7a] "Compile arm ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [armeabi-v7a] "Compile arm ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [armeabi-v7a] "Compile arm ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [armeabi-v7a] "Compile arm ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [armeabi-v7a] "Compile arm ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [armeabi-v7a] "Compile arm ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [armeabi-v7a] "Compile arm ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [armeabi-v7a] "Compile arm ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [armeabi-v7a] "Compile arm ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [armeabi-v7a] "Compile arm ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [armeabi-v7a] "Compile arm ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [armeabi-v7a] "Compile arm ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [armeabi-v7a] "Compile arm ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [armeabi-v7a] "Compile arm ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [armeabi-v7a] "Compile arm ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [armeabi-v7a] "Compile arm ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [armeabi-v7a] "Compile arm ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [armeabi-v7a] "Compile arm ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [armeabi-v7a] "Compile arm ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [armeabi-v7a] "Compile arm ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [armeabi-v7a] "Compile arm ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [armeabi-v7a] "Compile arm ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [armeabi-v7a] "Compile arm ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [armeabi-v7a] "Compile arm ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [armeabi-v7a] "Compile arm ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +echo [armeabi-v7a] "Compile arm ": "dc <= ngen_arm.S" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/ngen_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -fvisibility=hidden -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-ARM/ngen_arm.S -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/ngen_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [armeabi-v7a] "Compile++ arm ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [armeabi-v7a] "Compile++ arm ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -fno-exceptions -fno-rtti -marm -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -DTARGET_LINUX_ARMELv7 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/armeabi-v7a +echo [armeabi-v7a] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-arm /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/rec_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-ARM/ngen_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/armeabi-v7a/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -no-canonical-prefixes -target armv7-none-linux-androideabi14 -Wl,--fix-cortex-a8 -Wl,--gc-sections,--icf=safe -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-arm/usr/lib -llog -lGLESv2 -lEGL -lz -Wl,--no-warn-shared-textrel -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a +echo [armeabi-v7a] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [armeabi-v7a] "Compile thumb ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Os -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/android_native_app_glue +echo [armeabi-v7a] "Compile thumb ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -fno-integrated-as -g -target armv7-none-linux-androideabi14 -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -Os -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/arm-linux-androideabi -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/android_native_app_glue/android_native_app_glue.o +echo [armeabi-v7a] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/android_native_app_glue/android_native_app_glue.o +echo [armeabi-v7a] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-arm /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64 -no-canonical-prefixes -target armv7-none-linux-androideabi14 -Wl,--fix-cortex-a8 -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-arm/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libsexplay.so +echo [armeabi-v7a] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/armeabi-v7a/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/armeabi-v7a/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/android_gradle_build.json new file mode 100644 index 000000000..352b3e7ed --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/android_gradle_build.json @@ -0,0 +1,846 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dmips NDK_ALL_ABIS\u003dmips NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib clean" + ], + "libraries": { + "android_native_app_glue-release-mips": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dmips NDK_ALL_ABIS\u003dmips NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libandroid_native_app_glue.a", + "toolchain": "toolchain-mips", + "abi": "mips", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libandroid_native_app_glue.a" + }, + "sexplay-release-mips": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dmips NDK_ALL_ABIS\u003dmips NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libsexplay.so", + "toolchain": "toolchain-mips", + "abi": "mips", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libsexplay.so" + }, + "dc-release-mips": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dmips NDK_ALL_ABIS\u003dmips NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libdc.so", + "toolchain": "toolchain-mips", + "abi": "mips", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64\" \"-target\" \"mipsel-none-linux-android\" \"-fpic\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fmessage-length\u003d0\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-mips32\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_MIPS\" \"-DTARGET_NO_REC\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libdc.so" + } + }, + "toolchains": { + "toolchain-mips": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/ndkBuild_build_command.txt new file mode 100644 index 000000000..e1e254673 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=mips +NDK_ALL_ABIS=mips +NDK_DEBUG=0 +APP_PLATFORM=android-14 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/ndkBuild_build_output.txt new file mode 100644 index 000000000..cb22b7a57 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/mips/ndkBuild_build_output.txt @@ -0,0 +1,451 @@ +$TARGET_ARCH_ABI is [mips] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [mips] "Compile++ ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [mips] "Compile++ ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [mips] "Compile++ ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [mips] "Compile++ ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [mips] "Compile++ ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [mips] "Compile++ ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [mips] "Compile++ ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [mips] "Compile++ ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [mips] "Compile++ ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [mips] "Compile++ ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [mips] "Compile++ ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [mips] "Compile++ ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [mips] "Compile++ ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [mips] "Compile++ ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [mips] "Compile++ ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [mips] "Compile++ ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [mips] "Compile++ ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [mips] "Compile++ ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [mips] "Compile++ ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [mips] "Compile++ ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [mips] "Compile++ ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [mips] "Compile++ ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [mips] "Compile++ ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [mips] "Compile++ ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [mips] "Compile++ ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [mips] "Compile++ ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [mips] "Compile++ ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [mips] "Compile++ ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [mips] "Compile++ ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [mips] "Compile++ ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [mips] "Compile++ ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [mips] "Compile++ ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [mips] "Compile++ ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [mips] "Compile++ ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [mips] "Compile++ ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [mips] "Compile++ ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [mips] "Compile++ ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [mips] "Compile++ ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [mips] "Compile++ ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [mips] "Compile++ ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [mips] "Compile++ ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [mips] "Compile++ ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [mips] "Compile++ ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [mips] "Compile++ ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [mips] "Compile++ ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [mips] "Compile++ ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [mips] "Compile++ ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [mips] "Compile++ ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [mips] "Compile++ ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [mips] "Compile++ ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [mips] "Compile++ ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [mips] "Compile++ ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [mips] "Compile++ ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [mips] "Compile++ ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [mips] "Compile++ ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [mips] "Compile++ ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [mips] "Compile++ ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [mips] "Compile++ ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [mips] "Compile++ ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [mips] "Compile++ ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [mips] "Compile++ ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [mips] "Compile++ ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [mips] "Compile++ ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [mips] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [mips] "Compile++ ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [mips] "Compile++ ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [mips] "Compile++ ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [mips] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [mips] "Compile++ ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [mips] "Compile++ ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [mips] "Compile++ ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [mips] "Compile++ ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [mips] "Compile++ ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [mips] "Compile++ ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [mips] "Compile++ ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [mips] "Compile++ ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [mips] "Compile++ ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [mips] "Compile++ ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [mips] "Compile++ ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [mips] "Compile++ ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [mips] "Compile++ ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [mips] "Compile++ ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [mips] "Compile++ ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [mips] "Compile++ ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [mips] "Compile++ ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [mips] "Compile++ ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [mips] "Compile++ ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [mips] "Compile++ ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [mips] "Compile++ ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [mips] "Compile++ ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [mips] "Compile ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [mips] "Compile ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [mips] "Compile ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [mips] "Compile ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [mips] "Compile ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [mips] "Compile ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [mips] "Compile ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [mips] "Compile ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [mips] "Compile ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [mips] "Compile ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [mips] "Compile ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [mips] "Compile ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [mips] "Compile ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [mips] "Compile ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [mips] "Compile ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [mips] "Compile ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [mips] "Compile ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [mips] "Compile ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [mips] "Compile ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [mips] "Compile ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [mips] "Compile ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [mips] "Compile ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [mips] "Compile ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [mips] "Compile ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [mips] "Compile ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [mips] "Compile ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [mips] "Compile ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [mips] "Compile ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [mips] "Compile ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [mips] "Compile ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [mips] "Compile ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [mips] "Compile ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [mips] "Compile ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [mips] "Compile ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [mips] "Compile ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [mips] "Compile ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [mips] "Compile ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [mips] "Compile ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [mips] "Compile ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [mips] "Compile ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [mips] "Compile ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [mips] "Compile ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [mips] "Compile ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [mips] "Compile ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [mips] "Compile ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [mips] "Compile ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [mips] "Compile ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [mips] "Compile ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [mips] "Compile ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [mips] "Compile ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [mips] "Compile ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [mips] "Compile ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [mips] "Compile ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [mips] "Compile ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [mips] "Compile ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [mips] "Compile ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [mips] "Compile ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [mips] "Compile ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [mips] "Compile ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [mips] "Compile ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [mips] "Compile ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [mips] "Compile ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [mips] "Compile ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [mips] "Compile ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [mips] "Compile ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [mips] "Compile ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [mips] "Compile ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [mips] "Compile ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [mips] "Compile ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [mips] "Compile ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [mips] "Compile ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [mips] "Compile ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [mips] "Compile ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [mips] "Compile ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [mips] "Compile ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [mips] "Compile ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [mips] "Compile ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [mips] "Compile ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [mips] "Compile ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [mips] "Compile ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [mips] "Compile ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [mips] "Compile ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [mips] "Compile ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [mips] "Compile ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [mips] "Compile ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [mips] "Compile ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [mips] "Compile ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [mips] "Compile ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [mips] "Compile ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [mips] "Compile ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [mips] "Compile ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [mips] "Compile ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [mips] "Compile ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [mips] "Compile ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [mips] "Compile ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [mips] "Compile ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [mips] "Compile ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [mips] "Compile ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [mips] "Compile ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [mips] "Compile ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [mips] "Compile ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [mips] "Compile ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [mips] "Compile ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [mips] "Compile ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [mips] "Compile++ ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [mips] "Compile++ ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_MIPS -DTARGET_NO_REC -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/mips +echo [mips] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-mips /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/mips/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -L/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/lib/gcc/mips64el-linux-android/4.9.x/32/mips-r1 -target mipsel-none-linux-android -no-canonical-prefixes -mips32 -Wl,--gc-sections -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-mips/usr/lib -llog -lGLESv2 -lEGL -lz -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips +echo [mips] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/bin/mips64el-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [mips] "Compile ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/android_native_app_glue +echo [mips] "Compile ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -target mipsel-none-linux-android -fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fmessage-length=0 -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -mips32 -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/mipsel-linux-android -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/android_native_app_glue/android_native_app_glue.o +echo [mips] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/bin/mips64el-linux-android-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/android_native_app_glue/android_native_app_glue.o +echo [mips] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-mips /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64 -L/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/lib/gcc/mips64el-linux-android/4.9.x/32/mips-r1 -target mipsel-none-linux-android -no-canonical-prefixes -mips32 -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-mips/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libsexplay.so +echo [mips] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/mips/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/linux-x86_64/bin/mips64el-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/mips/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/android_gradle_build.json new file mode 100644 index 000000000..d2165cd23 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/android_gradle_build.json @@ -0,0 +1,883 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86 NDK_ALL_ABIS\u003dx86 NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib clean" + ], + "libraries": { + "dc-release-x86": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86 NDK_ALL_ABIS\u003dx86 NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libdc.so", + "toolchain": "toolchain-x86", + "abi": "x86", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/emitter/x86_emitter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_lin86_asm.S", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-fvisibility\u003dhidden\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_asm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_il.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-mstackrealign\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-DTARGET_NO_AREC\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-std\u003dc++11\" \"-DTARGET_NO_AREC\" \"-fpermissive\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libdc.so" + }, + "sexplay-release-x86": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86 NDK_ALL_ABIS\u003dx86 NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libsexplay.so", + "toolchain": "toolchain-x86", + "abi": "x86", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libsexplay.so" + }, + "android_native_app_glue-release-x86": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86 NDK_ALL_ABIS\u003dx86 NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-14 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libandroid_native_app_glue.a", + "toolchain": "toolchain-x86", + "abi": "x86", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64\" \"-target\" \"i686-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d14\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"-mstackrealign\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libandroid_native_app_glue.a" + } + }, + "toolchains": { + "toolchain-x86": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "S", + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/ndkBuild_build_command.txt new file mode 100644 index 000000000..e2fb97338 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=x86 +NDK_ALL_ABIS=x86 +NDK_DEBUG=0 +APP_PLATFORM=android-14 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/ndkBuild_build_output.txt new file mode 100644 index 000000000..f81a5064b --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86/ndkBuild_build_output.txt @@ -0,0 +1,472 @@ +$TARGET_ARCH_ABI is [x86] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [x86] "Compile++ ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [x86] "Compile++ ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [x86] "Compile++ ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [x86] "Compile++ ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [x86] "Compile++ ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [x86] "Compile++ ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [x86] "Compile++ ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [x86] "Compile++ ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [x86] "Compile++ ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [x86] "Compile++ ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [x86] "Compile++ ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [x86] "Compile++ ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [x86] "Compile++ ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [x86] "Compile++ ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [x86] "Compile++ ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [x86] "Compile++ ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [x86] "Compile++ ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [x86] "Compile++ ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [x86] "Compile++ ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [x86] "Compile++ ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [x86] "Compile++ ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [x86] "Compile++ ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [x86] "Compile++ ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [x86] "Compile++ ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [x86] "Compile++ ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [x86] "Compile++ ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [x86] "Compile++ ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [x86] "Compile++ ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [x86] "Compile++ ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [x86] "Compile++ ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [x86] "Compile++ ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [x86] "Compile++ ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [x86] "Compile++ ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [x86] "Compile++ ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [x86] "Compile++ ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [x86] "Compile++ ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [x86] "Compile++ ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [x86] "Compile++ ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [x86] "Compile++ ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [x86] "Compile++ ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [x86] "Compile++ ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [x86] "Compile++ ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [x86] "Compile++ ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [x86] "Compile++ ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [x86] "Compile++ ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [x86] "Compile++ ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [x86] "Compile++ ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [x86] "Compile++ ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [x86] "Compile++ ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [x86] "Compile++ ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [x86] "Compile++ ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [x86] "Compile++ ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [x86] "Compile++ ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [x86] "Compile++ ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [x86] "Compile++ ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [x86] "Compile++ ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [x86] "Compile++ ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [x86] "Compile++ ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [x86] "Compile++ ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [x86] "Compile++ ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [x86] "Compile++ ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [x86] "Compile++ ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [x86] "Compile++ ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [x86] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [x86] "Compile++ ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [x86] "Compile++ ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [x86] "Compile++ ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [x86] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [x86] "Compile++ ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [x86] "Compile++ ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [x86] "Compile++ ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [x86] "Compile++ ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [x86] "Compile++ ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [x86] "Compile++ ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [x86] "Compile++ ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [x86] "Compile++ ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [x86] "Compile++ ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [x86] "Compile++ ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [x86] "Compile++ ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [x86] "Compile++ ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [x86] "Compile++ ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [x86] "Compile++ ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [x86] "Compile++ ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [x86] "Compile++ ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [x86] "Compile++ ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [x86] "Compile++ ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna +echo [x86] "Compile++ ": "dc <= blockmanager.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o +echo [x86] "Compile++ ": "dc <= decoder.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o +echo [x86] "Compile++ ": "dc <= driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o +echo [x86] "Compile++ ": "dc <= shil.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86 +echo [x86] "Compile++ ": "dc <= rec_x86_asm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_asm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_asm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_asm.o +echo [x86] "Compile++ ": "dc <= rec_x86_driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_driver.o +echo [x86] "Compile++ ": "dc <= rec_x86_il.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_il.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_x86_il.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_il.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/emitter +echo [x86] "Compile++ ": "dc <= x86_emitter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/emitter/x86_emitter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/emitter/x86_emitter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/emitter/x86_emitter.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [x86] "Compile++ ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [x86] "Compile++ ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [x86] "Compile++ ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [x86] "Compile++ ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [x86] "Compile ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [x86] "Compile ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [x86] "Compile ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [x86] "Compile ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [x86] "Compile ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [x86] "Compile ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [x86] "Compile ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [x86] "Compile ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [x86] "Compile ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [x86] "Compile ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [x86] "Compile ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [x86] "Compile ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [x86] "Compile ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [x86] "Compile ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [x86] "Compile ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [x86] "Compile ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [x86] "Compile ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [x86] "Compile ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [x86] "Compile ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [x86] "Compile ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [x86] "Compile ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [x86] "Compile ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [x86] "Compile ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [x86] "Compile ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [x86] "Compile ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [x86] "Compile ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [x86] "Compile ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [x86] "Compile ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [x86] "Compile ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [x86] "Compile ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [x86] "Compile ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [x86] "Compile ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [x86] "Compile ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [x86] "Compile ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [x86] "Compile ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [x86] "Compile ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [x86] "Compile ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [x86] "Compile ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [x86] "Compile ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [x86] "Compile ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [x86] "Compile ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [x86] "Compile ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [x86] "Compile ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [x86] "Compile ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [x86] "Compile ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [x86] "Compile ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [x86] "Compile ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [x86] "Compile ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [x86] "Compile ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [x86] "Compile ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [x86] "Compile ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [x86] "Compile ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [x86] "Compile ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [x86] "Compile ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [x86] "Compile ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [x86] "Compile ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [x86] "Compile ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [x86] "Compile ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [x86] "Compile ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [x86] "Compile ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [x86] "Compile ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [x86] "Compile ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [x86] "Compile ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [x86] "Compile ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [x86] "Compile ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [x86] "Compile ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [x86] "Compile ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [x86] "Compile ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [x86] "Compile ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [x86] "Compile ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [x86] "Compile ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [x86] "Compile ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [x86] "Compile ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [x86] "Compile ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [x86] "Compile ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [x86] "Compile ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [x86] "Compile ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [x86] "Compile ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [x86] "Compile ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [x86] "Compile ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [x86] "Compile ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [x86] "Compile ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [x86] "Compile ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [x86] "Compile ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [x86] "Compile ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [x86] "Compile ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [x86] "Compile ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [x86] "Compile ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [x86] "Compile ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [x86] "Compile ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [x86] "Compile ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [x86] "Compile ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [x86] "Compile ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [x86] "Compile ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [x86] "Compile ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [x86] "Compile ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [x86] "Compile ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [x86] "Compile ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [x86] "Compile ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [x86] "Compile ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [x86] "Compile ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [x86] "Compile ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [x86] "Compile ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [x86] "Compile ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +echo [x86] "Compile ": "dc <= rec_lin86_asm.S" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_lin86_asm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -fvisibility=hidden -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rec-x86/rec_lin86_asm.S -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_lin86_asm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [x86] "Compile++ ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [x86] "Compile++ ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -D__ANDROID_API__=14 -Wa,--noexecstack -Wno-error=format-security -mstackrealign -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -DTARGET_NO_AREC -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -std=c++11 -DTARGET_NO_AREC -fpermissive --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86 +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/x86 +echo [x86] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-x86 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_asm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_x86_il.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/emitter/x86_emitter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rec-x86/rec_lin86_asm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/x86/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -no-canonical-prefixes -Wl,--gc-sections,--icf=safe -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-x86/usr/lib -llog -lGLESv2 -lEGL -lz -Wl,--no-warn-shared-textrel -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86 +echo [x86] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [x86] "Compile ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/android_native_app_glue +echo [x86] "Compile ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=14 -Wa,--noexecstack -Wformat -Werror=format-security -mstackrealign --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/i686-linux-android -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/android_native_app_glue/android_native_app_glue.o +echo [x86] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/android_native_app_glue/android_native_app_glue.o +echo [x86] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-14/arch-x86 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64 -target i686-none-linux-android -no-canonical-prefixes -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-14/arch-x86/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libsexplay.so +echo [x86] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86/libsexplay.so diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/android_gradle_build.json b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/android_gradle_build.json new file mode 100644 index 000000000..fcbb20ddc --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/android_gradle_build.json @@ -0,0 +1,862 @@ +{ + "buildFiles": [ + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk", + "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk" + ], + "cleanCommands": [ + "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86_64 NDK_ALL_ABIS\u003dx86_64 NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib clean" + ], + "libraries": { + "sexplay-release-x86_64": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86_64 NDK_ALL_ABIS\u003dx86_64 NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libsexplay.so", + "toolchain": "toolchain-x86_64", + "abi": "x86_64", + "artifactName": "sexplay", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libsexplay.so" + }, + "dc-release-x86_64": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86_64 NDK_ALL_ABIS\u003dx86_64 NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libdc.so", + "toolchain": "toolchain-x86_64", + "abi": "x86_64", + "artifactName": "dc", + "files": [ + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + }, + { + "src": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-fno-exceptions\" \"-fno-rtti\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport\" \"-I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/..\" \"-DANDROID\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fvisibility\u003dhidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wno-error\u003dformat-security\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"-frtti\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core\" \"-I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps\" \"-D_ANDROID\" \"-DRELEASE\" \"-frename-registers\" \"-fsingle-precision-constant\" \"-ffast-math\" \"-ftree-vectorize\" \"-fomit-frame-pointer\" \"-DTARGET_LINUX_x86\" \"-DGLES\" \"-fno-exceptions\" \"-fno-rtti\" \"-std\u003dgnu++11\" \"-fvisibility\u003dhidden\" \"-fvisibility-inlines-hidden\" \"-ffunction-sections\" \"-fdata-sections\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libdc.so" + }, + "android_native_app_glue-release-x86_64": { + "buildCommand": "/opt/android-sdk/ndk-bundle/ndk-build NDK_PROJECT_PATH\u003dnull APP_BUILD_SCRIPT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk NDK_APPLICATION_MK\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk APP_ABI\u003dx86_64 NDK_ALL_ABIS\u003dx86_64 NDK_DEBUG\u003d0 APP_PLATFORM\u003dandroid-21 NDK_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj NDK_LIBS_OUT\u003d/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libandroid_native_app_glue.a", + "toolchain": "toolchain-x86_64", + "abi": "x86_64", + "artifactName": "android_native_app_glue", + "files": [ + { + "src": "/opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c", + "flags": "\"-gcc-toolchain\" \"/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64\" \"-target\" \"x86_64-none-linux-android\" \"-ffunction-sections\" \"-funwind-tables\" \"-fstack-protector-strong\" \"-fPIC\" \"-Wno-invalid-command-line-argument\" \"-Wno-unused-command-line-argument\" \"-no-canonical-prefixes\" \"-g\" \"-O2\" \"-DNDEBUG\" \"-I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue\" \"-DANDROID\" \"-D__ANDROID_API__\u003d21\" \"-Wa,--noexecstack\" \"-Wformat\" \"-Werror\u003dformat-security\" \"--sysroot\" \"/opt/android-sdk/ndk-bundle/sysroot\" \"-isystem\" \"/opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android\"" + } + ], + "output": "/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libandroid_native_app_glue.a" + } + }, + "toolchains": { + "toolchain-x86_64": { + "cCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang", + "cppCompilerExecutable": "/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" + } + }, + "cFileExtensions": [ + "c" + ], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/ndkBuild_build_command.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/ndkBuild_build_command.txt new file mode 100644 index 000000000..8a50190f6 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/ndkBuild_build_command.txt @@ -0,0 +1,17 @@ +Executable : /opt/android-sdk/ndk-bundle/ndk-build +arguments : +NDK_PROJECT_PATH=null +APP_BUILD_SCRIPT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Android.mk +NDK_APPLICATION_MK=/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/Application.mk +APP_ABI=x86_64 +NDK_ALL_ABIS=x86_64 +NDK_DEBUG=0 +APP_PLATFORM=android-21 +NDK_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj +NDK_LIBS_OUT=/home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib +APP_SHORT_COMMANDS=false +LOCAL_SHORT_COMMANDS=false +-B +-n +jvmArgs : + diff --git a/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/ndkBuild_build_output.txt b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/ndkBuild_build_output.txt new file mode 100644 index 000000000..907463086 --- /dev/null +++ b/shell/android-studio/app/.externalNativeBuild/ndkBuild/release/x86_64/ndkBuild_build_output.txt @@ -0,0 +1,460 @@ +$TARGET_ARCH_ABI is [x86_64] +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/* +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/gdbserver +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/gdb.setup +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg +echo [x86_64] "Compile++ ": "dc <= cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o +echo [x86_64] "Compile++ ": "dc <= cl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/cl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o +echo [x86_64] "Compile++ ": "dc <= ini.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/cfg/ini.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7 +echo [x86_64] "Compile++ ": "dc <= arm7.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm7.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o +echo [x86_64] "Compile++ ": "dc <= arm_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/arm_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o +echo [x86_64] "Compile++ ": "dc <= vbaARM.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/vbaARM.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o +echo [x86_64] "Compile++ ": "dc <= virt_arm.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/arm7/virt_arm.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica +echo [x86_64] "Compile++ ": "dc <= aica.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o +echo [x86_64] "Compile++ ": "dc <= aica_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o +echo [x86_64] "Compile++ ": "dc <= aica_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/aica_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o +echo [x86_64] "Compile++ ": "dc <= dsp.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/dsp.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o +echo [x86_64] "Compile++ ": "dc <= sgc_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/aica/sgc_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly +echo [x86_64] "Compile++ ": "dc <= holly_intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/holly_intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o +echo [x86_64] "Compile++ ": "dc <= sb.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o +echo [x86_64] "Compile++ ": "dc <= sb_dma.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_dma.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o +echo [x86_64] "Compile++ ": "dc <= sb_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/holly/sb_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom +echo [x86_64] "Compile++ ": "dc <= gdrom_response.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdrom_response.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o +echo [x86_64] "Compile++ ": "dc <= gdromv3.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/gdrom/gdromv3.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple +echo [x86_64] "Compile++ ": "dc <= maple_cfg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_cfg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o +echo [x86_64] "Compile++ ": "dc <= maple_devs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_devs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o +echo [x86_64] "Compile++ ": "dc <= maple_helper.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_helper.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o +echo [x86_64] "Compile++ ": "dc <= maple_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/maple/maple_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem +echo [x86_64] "Compile++ ": "dc <= _vmem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/mem/_vmem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr +echo [x86_64] "Compile++ ": "dc <= drkPvr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/drkPvr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o +echo [x86_64] "Compile++ ": "dc <= pvr_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o +echo [x86_64] "Compile++ ": "dc <= pvr_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o +echo [x86_64] "Compile++ ": "dc <= pvr_sb_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/pvr_sb_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o +echo [x86_64] "Compile++ ": "dc <= Renderer_if.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/Renderer_if.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o +echo [x86_64] "Compile++ ": "dc <= spg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/spg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o +echo [x86_64] "Compile++ ": "dc <= ta.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o +echo [x86_64] "Compile++ ": "dc <= ta_ctx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_ctx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o +echo [x86_64] "Compile++ ": "dc <= ta_vtx.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/pvr/ta_vtx.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4 +echo [x86_64] "Compile++ ": "dc <= sh4_core_regs.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_core_regs.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o +echo [x86_64] "Compile++ ": "dc <= sh4_interrupts.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_interrupts.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o +echo [x86_64] "Compile++ ": "dc <= sh4_mem.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mem.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o +echo [x86_64] "Compile++ ": "dc <= sh4_mmr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_mmr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o +echo [x86_64] "Compile++ ": "dc <= sh4_opcode_list.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_opcode_list.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o +echo [x86_64] "Compile++ ": "dc <= sh4_rom.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_rom.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o +echo [x86_64] "Compile++ ": "dc <= sh4_sched.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/sh4_sched.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr +echo [x86_64] "Compile++ ": "dc <= sh4_fpu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_fpu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o +echo [x86_64] "Compile++ ": "dc <= sh4_interpreter.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_interpreter.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o +echo [x86_64] "Compile++ ": "dc <= sh4_opcodes.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/interpr/sh4_opcodes.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules +echo [x86_64] "Compile++ ": "dc <= bsc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/bsc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o +echo [x86_64] "Compile++ ": "dc <= ccn.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ccn.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o +echo [x86_64] "Compile++ ": "dc <= cpg.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/cpg.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o +echo [x86_64] "Compile++ ": "dc <= dmac.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/dmac.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o +echo [x86_64] "Compile++ ": "dc <= intc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/intc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o +echo [x86_64] "Compile++ ": "dc <= mmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/mmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o +echo [x86_64] "Compile++ ": "dc <= rtc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/rtc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o +echo [x86_64] "Compile++ ": "dc <= serial.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/serial.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o +echo [x86_64] "Compile++ ": "dc <= tmu.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/tmu.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o +echo [x86_64] "Compile++ ": "dc <= ubc.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/modules/ubc.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler +echo [x86_64] "Compile++ ": "dc <= profiler.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/profiler/profiler.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib +echo [x86_64] "Compile++ ": "dc <= audiobackend_alsa.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_alsa.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o +echo [x86_64] "Compile++ ": "dc <= audiobackend_coreaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_coreaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o +echo [x86_64] "Compile++ ": "dc <= audiobackend_directsound.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_directsound.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o +echo [x86_64] "Compile++ ": "dc <= audiobackend_oss.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_oss.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o +echo [x86_64] "Compile++ ": "dc <= audiobackend_pulseaudio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiobackend_pulseaudio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o +echo [x86_64] "Compile++ ": "dc <= audiostream.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/oslib/audiostream.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi +echo [x86_64] "Compile++ ": "dc <= naomi_cart.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi_cart.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o +echo [x86_64] "Compile++ ": "dc <= naomi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/naomi/naomi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread +echo [x86_64] "Compile++ ": "dc <= cdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/cdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o +echo [x86_64] "Compile++ ": "dc <= chd.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/chd.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o +echo [x86_64] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o +echo [x86_64] "Compile++ ": "dc <= gdi.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/gdi.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o +echo [x86_64] "Compile++ ": "dc <= ImgReader.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ImgReader.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o +echo [x86_64] "Compile++ ": "dc <= ioctl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/imgread/ioctl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux +echo [x86_64] "Compile++ ": "dc <= common.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/common.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o +echo [x86_64] "Compile++ ": "dc <= context.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/context.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/. +echo [x86_64] "Compile++ ": "dc <= nullDC.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./nullDC.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o +echo [x86_64] "Compile++ ": "dc <= stdclass.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/./stdclass.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio +echo [x86_64] "Compile++ ": "dc <= coreio.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/coreio/coreio.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr +echo [x86_64] "Compile++ ": "dc <= chdr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdr/chdr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto +echo [x86_64] "Compile++ ": "dc <= md5.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/md5.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o +echo [x86_64] "Compile++ ": "dc <= sha1.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha1.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o +echo [x86_64] "Compile++ ": "dc <= sha256.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/crypto/sha256.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf +echo [x86_64] "Compile++ ": "dc <= elf32.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf32.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o +echo [x86_64] "Compile++ ": "dc <= elf64.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf64.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o +echo [x86_64] "Compile++ ": "dc <= elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libelf/elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr +echo [x86_64] "Compile++ ": "dc <= cdipsr.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/chdpsr/cdipsr.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend +echo [x86_64] "Compile++ ": "dc <= TexCache.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/TexCache.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios +echo [x86_64] "Compile++ ": "dc <= descrambl.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/descrambl.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o +echo [x86_64] "Compile++ ": "dc <= gdrom_hle.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/gdrom_hle.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o +echo [x86_64] "Compile++ ": "dc <= reios.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o +echo [x86_64] "Compile++ ": "dc <= reios_elf.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/reios/reios_elf.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui +echo [x86_64] "Compile++ ": "dc <= server.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/webui/server.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna +echo [x86_64] "Compile++ ": "dc <= blockmanager.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/blockmanager.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o +echo [x86_64] "Compile++ ": "dc <= decoder.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/decoder.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o +echo [x86_64] "Compile++ ": "dc <= driver.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/driver.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o +echo [x86_64] "Compile++ ": "dc <= shil.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/hw/sh4/dyna/shil.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles +echo [x86_64] "Compile++ ": "dc <= gldraw.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gldraw.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o +echo [x86_64] "Compile++ ": "dc <= gles.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gles.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o +echo [x86_64] "Compile++ ": "dc <= gltex.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/rend/gles/gltex.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof +echo [x86_64] "Compile++ ": "dc <= nixprof.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/linux/nixprof/nixprof.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib +echo [x86_64] "Compile ": "dc <= adler32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/adler32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o +echo [x86_64] "Compile ": "dc <= compress.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/compress.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o +echo [x86_64] "Compile ": "dc <= crc32.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/crc32.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o +echo [x86_64] "Compile ": "dc <= deflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/deflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o +echo [x86_64] "Compile ": "dc <= gzclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o +echo [x86_64] "Compile ": "dc <= gzlib.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzlib.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o +echo [x86_64] "Compile ": "dc <= gzread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o +echo [x86_64] "Compile ": "dc <= gzwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/gzwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o +echo [x86_64] "Compile ": "dc <= infback.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/infback.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o +echo [x86_64] "Compile ": "dc <= inffast.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inffast.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o +echo [x86_64] "Compile ": "dc <= inflate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inflate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o +echo [x86_64] "Compile ": "dc <= inftrees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/inftrees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o +echo [x86_64] "Compile ": "dc <= trees.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/trees.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o +echo [x86_64] "Compile ": "dc <= uncompr.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/uncompr.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o +echo [x86_64] "Compile ": "dc <= zutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/zlib/zutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng +echo [x86_64] "Compile ": "dc <= png.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/png.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o +echo [x86_64] "Compile ": "dc <= pngerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o +echo [x86_64] "Compile ": "dc <= pngget.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngget.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o +echo [x86_64] "Compile ": "dc <= pngmem.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngmem.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o +echo [x86_64] "Compile ": "dc <= pngpread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngpread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o +echo [x86_64] "Compile ": "dc <= pngread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o +echo [x86_64] "Compile ": "dc <= pngrio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o +echo [x86_64] "Compile ": "dc <= pngrtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o +echo [x86_64] "Compile ": "dc <= pngrutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngrutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o +echo [x86_64] "Compile ": "dc <= pngset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o +echo [x86_64] "Compile ": "dc <= pngtrans.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngtrans.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o +echo [x86_64] "Compile ": "dc <= pngwio.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwio.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o +echo [x86_64] "Compile ": "dc <= pngwrite.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwrite.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o +echo [x86_64] "Compile ": "dc <= pngwtran.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwtran.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o +echo [x86_64] "Compile ": "dc <= pngwutil.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libpng/pngwutil.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket +echo [x86_64] "Compile ": "dc <= base64-decode.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/base64-decode.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o +echo [x86_64] "Compile ": "dc <= client.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o +echo [x86_64] "Compile ": "dc <= client-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o +echo [x86_64] "Compile ": "dc <= client-parser.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/client-parser.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o +echo [x86_64] "Compile ": "dc <= context.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/context.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o +echo [x86_64] "Compile ": "dc <= extension.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o +echo [x86_64] "Compile ": "dc <= extension-deflate-frame.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-frame.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o +echo [x86_64] "Compile ": "dc <= extension-deflate-stream.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/extension-deflate-stream.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o +echo [x86_64] "Compile ": "dc <= handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o +echo [x86_64] "Compile ": "dc <= libwebsockets.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/libwebsockets.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o +echo [x86_64] "Compile ": "dc <= lws-plat-unix.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-unix.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o +echo [x86_64] "Compile ": "dc <= lws-plat-win.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/lws-plat-win.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o +echo [x86_64] "Compile ": "dc <= output.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/output.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o +echo [x86_64] "Compile ": "dc <= parsers.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/parsers.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o +echo [x86_64] "Compile ": "dc <= pollfd.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/pollfd.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o +echo [x86_64] "Compile ": "dc <= server.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o +echo [x86_64] "Compile ": "dc <= server-handshake.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/server-handshake.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o +echo [x86_64] "Compile ": "dc <= service.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/service.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o +echo [x86_64] "Compile ": "dc <= sha-1.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libwebsocket/sha-1.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs +echo [x86_64] "Compile ": "dc <= ifaddrs.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/ifaddrs/ifaddrs.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip +echo [x86_64] "Compile ": "dc <= mkstemp.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/mkstemp.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o +echo [x86_64] "Compile ": "dc <= zip_add.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o +echo [x86_64] "Compile ": "dc <= zip_add_dir.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_add_dir.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o +echo [x86_64] "Compile ": "dc <= zip_close.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_close.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o +echo [x86_64] "Compile ": "dc <= zip_delete.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_delete.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o +echo [x86_64] "Compile ": "dc <= zip_dirent.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_dirent.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o +echo [x86_64] "Compile ": "dc <= zip_entry_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o +echo [x86_64] "Compile ": "dc <= zip_entry_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_entry_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o +echo [x86_64] "Compile ": "dc <= zip_error.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o +echo [x86_64] "Compile ": "dc <= zip_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o +echo [x86_64] "Compile ": "dc <= zip_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o +echo [x86_64] "Compile ": "dc <= zip_error_get_sys_type.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_get_sys_type.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o +echo [x86_64] "Compile ": "dc <= zip_error_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o +echo [x86_64] "Compile ": "dc <= zip_error_to_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_error_to_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o +echo [x86_64] "Compile ": "dc <= zip_err_str.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_err_str.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o +echo [x86_64] "Compile ": "dc <= zip_fclose.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fclose.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o +echo [x86_64] "Compile ": "dc <= zip_file_error_clear.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_clear.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o +echo [x86_64] "Compile ": "dc <= zip_file_error_get.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_error_get.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o +echo [x86_64] "Compile ": "dc <= zip_file_get_offset.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_get_offset.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o +echo [x86_64] "Compile ": "dc <= zip_filerange_crc.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_filerange_crc.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o +echo [x86_64] "Compile ": "dc <= zip_file_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_file_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o +echo [x86_64] "Compile ": "dc <= zip_fopen.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o +echo [x86_64] "Compile ": "dc <= zip_fopen_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fopen_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o +echo [x86_64] "Compile ": "dc <= zip_fread.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_fread.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o +echo [x86_64] "Compile ": "dc <= zip_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o +echo [x86_64] "Compile ": "dc <= zip_get_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o +echo [x86_64] "Compile ": "dc <= zip_get_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o +echo [x86_64] "Compile ": "dc <= zip_get_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o +echo [x86_64] "Compile ": "dc <= zip_get_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o +echo [x86_64] "Compile ": "dc <= zip_get_num_files.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_get_num_files.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o +echo [x86_64] "Compile ": "dc <= zip_memdup.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_memdup.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o +echo [x86_64] "Compile ": "dc <= zip_name_locate.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_name_locate.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o +echo [x86_64] "Compile ": "dc <= zip_new.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_new.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o +echo [x86_64] "Compile ": "dc <= zip_open.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_open.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o +echo [x86_64] "Compile ": "dc <= zip_rename.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_rename.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o +echo [x86_64] "Compile ": "dc <= zip_replace.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_replace.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o +echo [x86_64] "Compile ": "dc <= zip_set_archive_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o +echo [x86_64] "Compile ": "dc <= zip_set_archive_flag.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_archive_flag.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o +echo [x86_64] "Compile ": "dc <= zip_set_file_comment.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_file_comment.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o +echo [x86_64] "Compile ": "dc <= zip_set_name.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_set_name.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o +echo [x86_64] "Compile ": "dc <= zip_source_buffer.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_buffer.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o +echo [x86_64] "Compile ": "dc <= zip_source_file.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_file.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o +echo [x86_64] "Compile ": "dc <= zip_source_filep.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_filep.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o +echo [x86_64] "Compile ": "dc <= zip_source_free.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_free.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o +echo [x86_64] "Compile ": "dc <= zip_source_function.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_function.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o +echo [x86_64] "Compile ": "dc <= zip_source_zip.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_source_zip.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o +echo [x86_64] "Compile ": "dc <= zip_stat.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o +echo [x86_64] "Compile ": "dc <= zip_stat_index.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_index.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o +echo [x86_64] "Compile ": "dc <= zip_stat_init.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_stat_init.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o +echo [x86_64] "Compile ": "dc <= zip_strerror.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_strerror.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o +echo [x86_64] "Compile ": "dc <= zip_unchange_all.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_all.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o +echo [x86_64] "Compile ": "dc <= zip_unchange_archive.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_archive.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o +echo [x86_64] "Compile ": "dc <= zip_unchange.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o +echo [x86_64] "Compile ": "dc <= zip_unchange_data.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps/libzip/zip_unchange_data.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [x86_64] "Compile++ ": "dc <= Android.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/Android.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o +echo [x86_64] "Compile++ ": "dc <= utils.cpp" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -fno-exceptions -fno-rtti -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/stlport -I/opt/android-sdk/ndk-bundle/sources/cxx-stl//gabi++/include -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fvisibility=hidden -ffunction-sections -fdata-sections -D__ANDROID_API__=21 -Wa,--noexecstack -Wno-error=format-security -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections -frtti -c -O3 -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../../../../../../core/deps -D_ANDROID -DRELEASE -frename-registers -fsingle-precision-constant -ffast-math -ftree-vectorize -fomit-frame-pointer -DTARGET_LINUX_x86 -DGLES -fno-exceptions -fno-rtti -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -ffunction-sections -fdata-sections --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/utils.cpp -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64 +mkdir -p /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/x86_64 +echo [x86_64] "SharedLibrary ": "libdc.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libdc.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/cl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/cfg/ini.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm7.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/arm_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/vbaARM.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/arm7/virt_arm.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/aica_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/dsp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/aica/sgc_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/holly_intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_dma.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/holly/sb_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdrom_response.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/gdrom/gdromv3.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_cfg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_devs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_helper.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/maple/maple_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/mem/_vmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/drkPvr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/pvr_sb_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/Renderer_if.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/spg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_ctx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/pvr/ta_vtx.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_core_regs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_interrupts.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_mmr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_opcode_list.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_rom.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/sh4_sched.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_fpu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_interpreter.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/interpr/sh4_opcodes.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/bsc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ccn.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/cpg.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/dmac.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/intc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/mmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/rtc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/serial.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/tmu.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/modules/ubc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/profiler/profiler.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_alsa.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_coreaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_directsound.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_oss.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiobackend_pulseaudio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/oslib/audiostream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi_cart.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/naomi/naomi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/cdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/chd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/gdi.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ImgReader.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/imgread/ioctl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/common.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./nullDC.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/./stdclass.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/coreio/coreio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdr/chdr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/md5.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/crypto/sha256.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf64.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libelf/elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/chdpsr/cdipsr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/TexCache.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/descrambl.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/gdrom_hle.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/reios/reios_elf.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/webui/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/blockmanager.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/decoder.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/driver.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/hw/sh4/dyna/shil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gldraw.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gles.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/rend/gles/gltex.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/linux/nixprof/nixprof.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/adler32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/compress.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/crc32.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/deflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzlib.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/gzwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/infback.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inffast.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inflate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/inftrees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/trees.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/uncompr.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/zlib/zutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/png.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngget.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngmem.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngpread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngrutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngtrans.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwio.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwrite.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwtran.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libpng/pngwutil.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/base64-decode.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/client-parser.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/context.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-frame.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/extension-deflate-stream.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/libwebsockets.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-unix.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/lws-plat-win.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/output.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/parsers.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/pollfd.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/server-handshake.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/service.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libwebsocket/sha-1.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/ifaddrs/ifaddrs.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/mkstemp.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_add_dir.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_close.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_delete.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_dirent.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_entry_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_get_sys_type.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_error_to_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_err_str.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fclose.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_clear.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_error_get.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_get_offset.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_filerange_crc.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_file_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fopen_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_fread.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_get_num_files.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_memdup.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_name_locate.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_new.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_open.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_rename.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_replace.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_archive_flag.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_file_comment.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_set_name.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_buffer.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_file.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_filep.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_free.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_function.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_source_zip.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_index.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_stat_init.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_strerror.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_all.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_archive.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/__/__/__/__/__/core/deps/libzip/zip_unchange_data.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/Android.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/dc//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/utils.o /opt/android-sdk/ndk-bundle/sources/cxx-stl/stlport/libs/x86_64/libstlport_static.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -no-canonical-prefixes -Wl,--gc-sections,--icf=safe -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64/usr/lib64 -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64/usr/lib -llog -lGLESv2 -lEGL -lz -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64 +echo [x86_64] "Install ": "libdc.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/libdc.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libdc.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/libdc.so +/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/x86_64-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/libdc.so +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src +echo [x86_64] "Compile ": "sexplay <= XperiaPlay.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -I/home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/.. -DANDROID -D__ANDROID_API__=21 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/../jni/src/XperiaPlay.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o +mkdir -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/android_native_app_glue +echo [x86_64] "Compile ": "android_native_app_glue <= android_native_app_glue.c" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -MMD -MP -MF /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/android_native_app_glue/android_native_app_glue.o.d -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -ffunction-sections -funwind-tables -fstack-protector-strong -fPIC -Wno-invalid-command-line-argument -Wno-unused-command-line-argument -no-canonical-prefixes -g -O2 -DNDEBUG -I/opt/android-sdk/ndk-bundle/sources/android/native_app_glue -DANDROID -D__ANDROID_API__=21 -Wa,--noexecstack -Wformat -Werror=format-security --sysroot /opt/android-sdk/ndk-bundle/sysroot -isystem /opt/android-sdk/ndk-bundle/sysroot/usr/include/x86_64-linux-android -c /opt/android-sdk/ndk-bundle/sources/android/native_app_glue/android_native_app_glue.c -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/android_native_app_glue/android_native_app_glue.o +echo [x86_64] "StaticLibrary ": "libandroid_native_app_glue.a" +rm -f /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libandroid_native_app_glue.a +/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/x86_64-linux-android-ar crsD /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libandroid_native_app_glue.a /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/android_native_app_glue/android_native_app_glue.o +echo [x86_64] "SharedLibrary ": "libsexplay.so" +/opt/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -Wl,-soname,libsexplay.so -shared --sysroot=/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64 /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/objs/sexplay//home/skmp/projects/reicast-emulator/shell/android-studio/app/src/main/jni/__/jni/src/XperiaPlay.o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libandroid_native_app_glue.a -latomic -Wl,--exclude-libs,libatomic.a -gcc-toolchain /opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64 -target x86_64-none-linux-android -no-canonical-prefixes -u ANativeActivity_onCreate -Wl,--build-id -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64/usr/lib64 -L/opt/android-sdk/ndk-bundle/platforms/android-21/arch-x86_64/usr/lib -llog -landroid -lEGL -lGLESv1_CM -llog -landroid -lc -lm -o /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libsexplay.so +echo [x86_64] "Install ": "libsexplay.so => /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/libsexplay.so" +install -p /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/obj/local/x86_64/libsexplay.so /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/libsexplay.so +/opt/android-sdk/ndk-bundle/toolchains/x86_64-4.9/prebuilt/linux-x86_64/bin/x86_64-linux-android-strip --strip-unneeded /home/skmp/projects/reicast-emulator/shell/android-studio/app/build/intermediates/ndkBuild/release/lib/x86_64/libsexplay.so diff --git a/shell/android-studio/app/app.iml b/shell/android-studio/app/app.iml new file mode 100644 index 000000000..962690508 --- /dev/null +++ b/shell/android-studio/app/app.iml @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/build.gradle b/shell/android-studio/app/build.gradle new file mode 100644 index 000000000..95110b865 --- /dev/null +++ b/shell/android-studio/app/build.gradle @@ -0,0 +1,44 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 25 + buildToolsVersion "27.0.3" + + defaultConfig { + applicationId "com.reicast.emulator" + minSdkVersion 9 + targetSdkVersion 21 + + ndk { + moduleName "dc" + abiFilters 'armeabi-v7a' + } + } + + useLibrary 'org.apache.http.legacy' + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' + } + } + externalNativeBuild { + ndkBuild { + path 'src/main/jni/Android.mk' + } + } +} + +dependencies { + compile 'com.android.support:support-v4:25.3.1' + compile files('libs/bcprov-jdk16-146.jar') + compile files('libs/com.bda.controller.jar') + compile files('libs/commons-io-2.4.jar') + compile files('libs/commons-lang3-3.1.jar') + compile files('libs/commons-logging-1.1.1.jar') + compile files('libs/dropbox-android-sdk-1.6.1.jar') + compile files('libs/image-uniload.jar') + compile files('libs/json_simple-1.1.jar') + compile files('libs/ouya-sdk.jar') +} diff --git a/shell/android-studio/app/libs/bcprov-jdk16-146.jar b/shell/android-studio/app/libs/bcprov-jdk16-146.jar new file mode 100644 index 000000000..27d3481e6 Binary files /dev/null and b/shell/android-studio/app/libs/bcprov-jdk16-146.jar differ diff --git a/shell/android-studio/app/libs/com.bda.controller.jar b/shell/android-studio/app/libs/com.bda.controller.jar new file mode 100644 index 000000000..f71dbece3 Binary files /dev/null and b/shell/android-studio/app/libs/com.bda.controller.jar differ diff --git a/shell/android-studio/app/libs/commons-io-2.4.jar b/shell/android-studio/app/libs/commons-io-2.4.jar new file mode 100644 index 000000000..90035a4fe Binary files /dev/null and b/shell/android-studio/app/libs/commons-io-2.4.jar differ diff --git a/shell/android-studio/app/libs/commons-lang3-3.1.jar b/shell/android-studio/app/libs/commons-lang3-3.1.jar new file mode 100644 index 000000000..a85e539b1 Binary files /dev/null and b/shell/android-studio/app/libs/commons-lang3-3.1.jar differ diff --git a/shell/android-studio/app/libs/commons-logging-1.1.1.jar b/shell/android-studio/app/libs/commons-logging-1.1.1.jar new file mode 100644 index 000000000..8758a96b7 Binary files /dev/null and b/shell/android-studio/app/libs/commons-logging-1.1.1.jar differ diff --git a/shell/android-studio/app/libs/dropbox-android-sdk-1.6.1.jar b/shell/android-studio/app/libs/dropbox-android-sdk-1.6.1.jar new file mode 100644 index 000000000..5e666751a Binary files /dev/null and b/shell/android-studio/app/libs/dropbox-android-sdk-1.6.1.jar differ diff --git a/shell/android-studio/app/libs/image-uniload.jar b/shell/android-studio/app/libs/image-uniload.jar new file mode 100644 index 000000000..c13c71cac Binary files /dev/null and b/shell/android-studio/app/libs/image-uniload.jar differ diff --git a/shell/android-studio/app/libs/json_simple-1.1.jar b/shell/android-studio/app/libs/json_simple-1.1.jar new file mode 100644 index 000000000..f395f4147 Binary files /dev/null and b/shell/android-studio/app/libs/json_simple-1.1.jar differ diff --git a/shell/android-studio/app/libs/ouya-sdk.jar b/shell/android-studio/app/libs/ouya-sdk.jar new file mode 100644 index 000000000..12b1e4038 Binary files /dev/null and b/shell/android-studio/app/libs/ouya-sdk.jar differ diff --git a/shell/android-studio/app/src/main/AndroidManifest.xml b/shell/android-studio/app/src/main/AndroidManifest.xml new file mode 100644 index 000000000..630fb1866 --- /dev/null +++ b/shell/android-studio/app/src/main/AndroidManifest.xml @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/shell/android-studio/app/src/main/assets/build b/shell/android-studio/app/src/main/assets/build new file mode 100644 index 000000000..77702c900 --- /dev/null +++ b/shell/android-studio/app/src/main/assets/build @@ -0,0 +1 @@ +0dba81b99abcf909937d6473bb7e5fc83bf33e6d \ No newline at end of file diff --git a/shell/android-studio/app/src/main/assets/buttons.png b/shell/android-studio/app/src/main/assets/buttons.png new file mode 100644 index 000000000..5d34a9738 Binary files /dev/null and b/shell/android-studio/app/src/main/assets/buttons.png differ diff --git a/shell/android-studio/app/src/main/java/com/android/util/DreamTime.java b/shell/android-studio/app/src/main/java/com/android/util/DreamTime.java new file mode 100644 index 000000000..e25b1b3f3 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/android/util/DreamTime.java @@ -0,0 +1,16 @@ +package com.android.util; + +import java.util.Calendar; + +public class DreamTime { + + private static long dreamRTC = ((20 * 365 + 5) * 86400) - 1; + + public static long getDreamtime() { + Calendar cal = Calendar.getInstance(); + int utcOffset = cal.get(Calendar.ZONE_OFFSET) + + cal.get(Calendar.DST_OFFSET); + return (System.currentTimeMillis() / 1000) + dreamRTC + + (utcOffset / 1000); + } +} diff --git a/shell/android-studio/app/src/main/java/com/android/util/FileUtils.java b/shell/android-studio/app/src/main/java/com/android/util/FileUtils.java new file mode 100644 index 000000000..bac1e044f --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/android/util/FileUtils.java @@ -0,0 +1,130 @@ +package com.android.util; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.FilenameFilter; +import java.io.IOException; +import java.io.ObjectInputStream; +import java.io.ObjectOutputStream; +import java.nio.IntBuffer; +import java.text.SimpleDateFormat; +import java.util.Collection; +import java.util.Date; +import java.util.List; +import java.util.Vector; +import java.util.zip.GZIPInputStream; +import java.util.zip.GZIPOutputStream; + +import javax.microedition.khronos.opengles.GL10; + +import android.content.Context; +import android.graphics.Bitmap; +import android.media.MediaScannerConnection; +import android.media.MediaScannerConnection.OnScanCompletedListener; +import android.net.Uri; + +import com.reicast.emulator.MainActivity; + +public class FileUtils { + + public void saveArray(String filename, List output_field) { + try { + FileOutputStream fos = new FileOutputStream(filename); + GZIPOutputStream gzos = new GZIPOutputStream(fos); + ObjectOutputStream out = new ObjectOutputStream(gzos); + out.writeObject(output_field); + out.flush(); + out.close(); + } catch (IOException e) { + e.getStackTrace(); + } + } + + @SuppressWarnings("unchecked") + public List loadArray(String filename) { + try { + FileInputStream fis = new FileInputStream(filename); + GZIPInputStream gzis = new GZIPInputStream(fis); + ObjectInputStream in = new ObjectInputStream(gzis); + List read_field = (List) in.readObject(); + in.close(); + return read_field; + } catch (Exception e) { + e.getStackTrace(); + } + return null; + } + + public Collection listFiles(File directory, FilenameFilter[] filter, + int recurse) { + + Vector files = new Vector(); + + File[] entries = directory.listFiles(); + + if (entries != null) { + for (File entry : entries) { + for (FilenameFilter filefilter : filter) { + if (filter == null + || filefilter.accept(directory, entry.getName())) { + files.add(entry); + } + } + if ((recurse <= -1) || (recurse > 0 && entry.isDirectory())) { + recurse--; + files.addAll(listFiles(entry, filter, recurse)); + recurse++; + } + } + } + return files; + } + + public static void saveScreenshot(final Context c, int w, int h, GL10 gl){ + try { + File dir = new File(MainActivity.home_directory); + SimpleDateFormat s = new SimpleDateFormat("yyyyMMddHHmmss"); + String timestamp = s.format(new Date()); + File f = new File(dir.getAbsolutePath(), timestamp+".jpeg"); + FileOutputStream out = new FileOutputStream(f); + savePixels(0, 0, w, h, gl).compress(Bitmap.CompressFormat.JPEG, 100, out); + out.close(); + //attempt to put into gallery app + MediaScannerConnection.scanFile(c.getApplicationContext(), new String[]{f.toString()}, null, new OnScanCompletedListener() { + public void onScanCompleted(String path, Uri uri) { + //Log.d("onScanCompleted", path); + //c.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, uri)); + } + }); + } catch(Exception e) { + e.printStackTrace(); + } + } + + //thank you stackoverflow + public static Bitmap savePixels(int x, int y, int w, int h, GL10 gl) + { + int b[]=new int[w*(y+h)]; + int bt[]=new int[w*h]; + IntBuffer ib=IntBuffer.wrap(b); + ib.position(0); + gl.glReadPixels(x, 0, w, y+h, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, ib); + + for(int i=0, k=0; i>16)&0xff; + int pr=(pix<<16)&0x00ff0000; + int pix1=(pix&0xff00ff00) | pr | pb; + bt[(h-k-1)*w+j]=pix1; + } + } + + Bitmap sb=Bitmap.createBitmap(bt, w, h, Bitmap.Config.ARGB_8888); + return sb; + } +} \ No newline at end of file diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/AboutFragment.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/AboutFragment.java new file mode 100644 index 000000000..5d406ccf0 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/AboutFragment.java @@ -0,0 +1,263 @@ +package com.reicast.emulator; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.ArrayList; +import java.util.HashMap; + +import org.apache.http.HttpEntity; +import org.apache.http.HttpResponse; +import org.apache.http.StatusLine; +import org.apache.http.client.ClientProtocolException; +import org.apache.http.client.HttpClient; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.impl.client.DefaultHttpClient; +import org.json.JSONArray; +import org.json.JSONException; +import org.json.JSONObject; + +import android.annotation.TargetApi; +import android.content.pm.PackageManager.NameNotFoundException; +import android.os.AsyncTask; +import android.os.Build; +import android.os.Bundle; +import android.os.Handler; +import android.support.v4.app.Fragment; +import android.text.util.Linkify; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.AdapterView; +import android.widget.AdapterView.OnItemClickListener; +import android.widget.ListView; +import android.widget.SlidingDrawer; +import android.widget.SlidingDrawer.OnDrawerOpenListener; +import android.widget.TextView; +import android.widget.Toast; + +import com.reicast.emulator.config.Config; +import com.reicast.emulator.debug.GitAdapter; + +public class AboutFragment extends Fragment { + + String buildId = ""; + SlidingDrawer slidingGithub; + private ListView list; + private GitAdapter adapter; + private Handler handler; + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + // Inflate the layout for this fragment + return inflater.inflate(R.layout.about_fragment, container, false); + } + + @Override + public void onViewCreated(View view, Bundle savedInstanceState) { + + try { + InputStream file = getResources().getAssets().open("build"); + if (file != null) { + BufferedReader reader = new BufferedReader( + new InputStreamReader(file)); + buildId = reader.readLine(); + file.close(); + } + } catch (IOException ioe) { + ioe.printStackTrace(); + } + + try { + String versionName = getActivity().getPackageManager() + .getPackageInfo(getActivity().getPackageName(), 0).versionName; + int versionCode = getActivity().getPackageManager() + .getPackageInfo(getActivity().getPackageName(), 0).versionCode; + TextView version = (TextView) getView().findViewById( + R.id.revision_text); + String revision = getString(R.string.revision_text, + versionName, String.valueOf(versionCode)); + if (!buildId.equals("")) { + revision = getActivity().getString(R.string.revision_text, + versionName, buildId.substring(0,7)); + } + version.setText(revision); + } catch (NameNotFoundException e) { + e.printStackTrace(); + } + + TextView website = (TextView) getView().findViewById( + R.id.site_text); + Linkify.addLinks(website, Linkify.ALL); + + handler = new Handler(); + + slidingGithub = (SlidingDrawer) getView().findViewById( + R.id.slidingGithub); + slidingGithub.setOnDrawerOpenListener(new OnDrawerOpenListener() { + @TargetApi(Build.VERSION_CODES.HONEYCOMB) + public void onDrawerOpened() { + new retrieveGitTask().execute(Config.git_api); + } + }); + + } + + public class retrieveGitTask extends + AsyncTask>> { + + @Override + protected void onPreExecute() { + + } + + @Override + protected ArrayList> doInBackground( + String... paths) { + ArrayList> commitList = new ArrayList>(); + try { + JSONArray gitObject = getContent(paths[0]); + for (int i = 0; i < gitObject.length(); i++) { + JSONObject jsonObject = gitObject.getJSONObject(i); + + JSONObject commitArray = jsonObject.getJSONObject("commit"); + + String date = commitArray.getJSONObject("committer") + .getString("date").replace("T", " ") + .replace("Z", ""); + String author = commitArray.getJSONObject("author") + .getString("name"); + String committer = commitArray.getJSONObject("committer") + .getString("name"); + + String avatar = null; + if (!jsonObject.getString("committer").equals("null")) { + avatar = jsonObject.getJSONObject("committer") + .getString("avatar_url"); + committer = committer + + " (" + + jsonObject.getJSONObject("committer") + .getString("login") + ")"; + if (avatar.equals("null")) { + avatar = "https://github.com/apple-touch-icon-144.png"; + } + } else { + avatar = "https://github.com/apple-touch-icon-144.png"; + } + if (!jsonObject.getString("author").equals("null")) { + author = author + + " (" + + jsonObject.getJSONObject("author").getString( + "login") + ")"; + } + String sha = jsonObject.getString("sha"); + String curl = jsonObject + .getString("url") + .replace("https://api.github.com/repos", + "https://github.com") + .replace("commits", "commit"); + + String title = "No commit heading attached"; + String message = "No commit message attached"; + + if (commitArray.getString("message").contains("\n\n")) { + String fullOutput = commitArray.getString("message"); + title = fullOutput.substring(0, + fullOutput.indexOf("\n\n")); + message = fullOutput.substring( + fullOutput.indexOf("\n\n") + 1, + fullOutput.length()); + } else { + title = commitArray.getString("message"); + } + + HashMap map = new HashMap(); + map.put("Date", date); + map.put("Committer", committer); + map.put("Title", title); + map.put("Message", message); + map.put("Sha", sha); + map.put("Url", curl); + map.put("Author", author); + map.put("Avatar", avatar); + map.put("Build", buildId); + commitList.add(map); + } + + } catch (JSONException e) { + handler.post(new Runnable() { + public void run() { + MainActivity.showToastMessage(getActivity(), + getActivity().getString(R.string.git_broken), + R.drawable.ic_github, Toast.LENGTH_SHORT); + slidingGithub.close(); + } + }); + e.printStackTrace(); + } catch (Exception e) { + handler.post(new Runnable() { + public void run() { + MainActivity.showToastMessage(getActivity(), + getActivity().getString(R.string.git_broken), + R.drawable.ic_github, Toast.LENGTH_SHORT); + slidingGithub.close(); + } + }); + e.printStackTrace(); + } + + return commitList; + } + + @Override + protected void onPostExecute( + ArrayList> commitList) { + if (commitList != null && commitList.size() > 0) { + list = (ListView) getView().findViewById(R.id.list); + list.setSelector(R.drawable.list_selector); + list.setChoiceMode(ListView.CHOICE_MODE_SINGLE); + adapter = new GitAdapter(getActivity(), commitList); + // Set adapter as specified collection + list.setAdapter(adapter); + + list.setOnItemClickListener(new OnItemClickListener() { + public void onItemClick(AdapterView parent, View view, + int position, long id) { + slidingGithub.open(); + } + }); + } + + } + + private JSONArray getContent(String urlString) + throws IOException, JSONException { + StringBuilder builder = new StringBuilder(); + HttpClient client = new DefaultHttpClient(); + HttpGet httpGet = new HttpGet(urlString); + try { + HttpResponse response = client.execute(httpGet); + StatusLine statusLine = response.getStatusLine(); + int statusCode = statusLine.getStatusCode(); + if (statusCode == 200) { + HttpEntity entity = response.getEntity(); + InputStream content = entity.getContent(); + BufferedReader reader = new BufferedReader( + new InputStreamReader(content)); + String line; + while ((line = reader.readLine()) != null) { + builder.append(line); + } + } else { + } + } catch (ClientProtocolException e) { + e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } + return new JSONArray(builder.toString()); + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/CloudFragment.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/CloudFragment.java new file mode 100644 index 000000000..69129c65f --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/CloudFragment.java @@ -0,0 +1,347 @@ +package com.reicast.emulator; + +/* + * File: CloudFragment.java + * Author: Luca D'Amico (Luca91) + * Last Edit: 11 May 2014 + * + * Reference: http://forums.reicast.com/index.php?topic=160.msg422 + */ + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.util.concurrent.ExecutionException; + +import android.app.AlertDialog; +import android.content.Context; +import android.content.DialogInterface; +import android.content.SharedPreferences; +import android.content.SharedPreferences.Editor; +import android.os.AsyncTask; +import android.os.Bundle; +import android.support.v4.app.Fragment; +import android.util.Log; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.Toast; + +import com.dropbox.client2.DropboxAPI; +import com.dropbox.client2.DropboxAPI.Entry; +import com.dropbox.client2.android.AndroidAuthSession; +import com.dropbox.client2.exception.DropboxException; +import com.dropbox.client2.session.AccessTokenPair; +import com.dropbox.client2.session.AppKeyPair; +import com.dropbox.client2.session.TokenPair; + + +public class CloudFragment extends Fragment { + + Button uploadBtn; + Button downloadBtn; + AlertDialog.Builder confirmDialog = null; + boolean actionRequired=false; + public String task = ""; + DropBoxClient client = null; + + String[] vmus = {"vmu_save_A1.bin","vmu_save_A2.bin", + "vmu_save_B1.bin","vmu_save_B2.bin", + "vmu_save_C1.bin","vmu_save_C2.bin", + "vmu_save_D1.bin","vmu_save_D2.bin"}; + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { + return inflater.inflate(R.layout.cloud_fragment, container, false); + } + + @Override + public void onViewCreated(View view, Bundle savedInstanceState) { + buttonListener(); + confirmDialog = new AlertDialog.Builder(getActivity()); + setClient(); + } + + public void setClient(){ + if(client==null) + client = new DropBoxClient(getActivity()); + } + + + public void buttonListener() { + uploadBtn = (Button) getView().findViewById(R.id.uploadBtn); + uploadBtn.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View arg0) { + confirmDialog.setMessage(R.string.uploadWarning); + confirmDialog.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + setClient(); + task = "Upload"; + client.startLogin(); + actionRequired = true; + } + }); + confirmDialog.setNegativeButton(R.string.cancel, null); + confirmDialog.show(); + + } + }); + + + downloadBtn = (Button) getView().findViewById(R.id.downloadBtn); + downloadBtn.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View arg0) { + confirmDialog.setMessage(R.string.downloadWarning); + confirmDialog.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + setClient(); + task = "Download"; + client.startLogin(); + actionRequired = true; + } + }); + confirmDialog.setNegativeButton(R.string.cancel, null); + confirmDialog.show(); + } + }); + } + + + @Override + public void onResume(){ + super.onResume(); + if (client.mDBApi != null) { + if (client.mDBApi.getSession().authenticationSuccessful()) { + try { + client.mDBApi.getSession().finishAuthentication(); + TokenPair tokens = client.mDBApi.getSession(). getAccessTokenPair(); + if(tokens == null) + Toast.makeText(getActivity(), "Failed to save session token!", Toast.LENGTH_SHORT).show(); + else + client.storeKeys(tokens.key, tokens.secret); + } catch (IllegalStateException e) { + Log.i("Dropbox", "Error authenticating", e); + } + } + if(actionRequired){ + for(int k=0;k mDBApi; + AndroidAuthSession session; + + public DropBoxClient(Context context){ + this.context = context; + session = buildSession(); + mDBApi = new DropboxAPI(session); + } + + public void startLogin(){ + mDBApi.getSession().startOAuth2Authentication(context); + } + + public String[] getKeys() { + SharedPreferences prefs = context.getSharedPreferences("ReicastVMUUploader", 0); + String key = prefs.getString("DBoxKey", null); + String secret = prefs.getString("DBoxSecret", null); + if (key != null && secret != null) { + String[] ret = new String[2]; + ret[0] = key; + ret[1] = secret; + return ret; + } else { + return null; + } + } + + + + public void storeKeys(String key, String secret) { + SharedPreferences prefs = context.getSharedPreferences("ReicastVMUUploader", 0); + Editor edit = prefs.edit(); + edit.putString("DBoxKey", key); + edit.putString("DBoxSecret", secret); + edit.commit(); + } + + + + + + private AndroidAuthSession buildSession() { + AppKeyPair appKeyPair = new AppKeyPair(APP_KEY, APP_SECRET); + AndroidAuthSession session; + + String[] stored = getKeys(); + if (stored != null) { + AccessTokenPair accessToken = new AccessTokenPair(stored[0], stored[1]); + session = new AndroidAuthSession(appKeyPair, accessToken); + } else { + session = new AndroidAuthSession(appKeyPair); + } + + return session; + } + +} + +class netOperation extends AsyncTask { + + DropBoxClient client = null; + + + public netOperation(DropBoxClient client){ + this.client = client; + } + + public boolean uploadFile(String filePath, String fileName) { + File file = new File(filePath); + FileInputStream inputStream = null; + try { + inputStream = new FileInputStream(file); + } catch (FileNotFoundException e) { + e.printStackTrace(); + } + + DropboxAPI.Entry response = null; + try { + response = client.mDBApi.putFileOverwrite("/"+fileName, inputStream, file.length(), null); + } catch (DropboxException e) { + e.printStackTrace(); + } + Log.i("FileInfos", "The uploaded file's rev is: "+ response); + return true; + } + + public boolean downloadFile(String filePath, String fileName) { + DropboxAPI.DropboxFileInfo info = null; + try { + Entry remoteFile = client.mDBApi.metadata("/"+fileName, 1, null, false, null); + if((remoteFile.rev != null) && (remoteFile.bytes > 0)){ // Avoid to download 0 bytes vmus! + File file = new File(filePath); + if(file.exists()) + createBackupOfVmu(fileName); + FileOutputStream out = null; + try { + out = new FileOutputStream(file); + } catch (FileNotFoundException e) { + e.printStackTrace(); + } + info = client.mDBApi.getFile("/"+fileName,null,out,null); + } + } catch (DropboxException e) { + e.printStackTrace(); + } + Log.i("FileInfos", "The downloaded file's rev is: "+ info); + return true; + } + + + @Override + protected void onPostExecute(String result) { + + } + + @Override + protected String doInBackground(String... strings) { + if(strings[0].equals("Upload")){ + if(uploadFile(strings[1],strings[2])) + return "Ok"; + else + return "No"; + } + else if(strings[0].equals("Download")){ + if(downloadFile(strings[1],strings[2])) + return "Ok"; + else + return "No"; + } + else + return "Unknown"; + } + + @Override + protected void onPreExecute() {} + + @Override + protected void onProgressUpdate(Void... values) {} + + + void createBackupOfVmu(String vmuName){ + File backupDir = new File(MainActivity.home_directory+"/VmuBackups/"); + if(!backupDir.exists()) { + backupDir.mkdirs(); + } + + File source = new File(MainActivity.home_directory+"/"+vmuName); + File destination = new File(MainActivity.home_directory+"/VmuBackups/"+vmuName); + if(!destination.exists()) { + try { + destination.createNewFile(); + } catch (IOException e) { + e.printStackTrace(); + } + } + try { + InputStream in = new FileInputStream(source); + OutputStream out = new FileOutputStream(destination); + byte[] buffer = new byte[1024]; + int length; + while ((length = in.read(buffer)) > 0){ + out.write(buffer, 0, length); + } + in.close(); + out.close(); + } catch (FileNotFoundException e) { + e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } + + + + } + +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/FileBrowser.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/FileBrowser.java new file mode 100644 index 000000000..3dbe77cfb --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/FileBrowser.java @@ -0,0 +1,541 @@ +package com.reicast.emulator; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.FilenameFilter; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Collections; +import java.util.Comparator; +import java.util.HashSet; +import java.util.Iterator; +import java.util.List; +import java.util.Locale; + +import org.apache.commons.lang3.StringUtils; + +import android.app.Activity; +import android.app.AlertDialog; +import android.content.Context; +import android.content.DialogInterface; +import android.content.SharedPreferences; +import android.graphics.Typeface; +import android.graphics.drawable.Drawable; +import android.net.Uri; +import android.os.AsyncTask; +import android.os.Bundle; +import android.os.Environment; +import android.os.Vibrator; +import android.preference.PreferenceManager; +import android.support.v4.app.Fragment; +import android.view.LayoutInflater; +import android.view.MotionEvent; +import android.view.View; +import android.view.View.OnClickListener; +import android.view.View.OnTouchListener; +import android.view.ViewGroup; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.ScrollView; +import android.widget.TextView; +import android.widget.Toast; + +import com.android.util.FileUtils; +import com.reicast.emulator.config.Config; +import com.reicast.emulator.emu.JNIdc; + +public class FileBrowser extends Fragment { + + private Vibrator vib; + private Drawable orig_bg; + private Activity parentActivity; + private boolean ImgBrowse; + private boolean games; + private OnItemSelectedListener mCallback; + + private SharedPreferences mPrefs; + private File sdcard = Environment.getExternalStorageDirectory(); + private String home_directory = sdcard.getAbsolutePath(); + private String game_directory = sdcard.getAbsolutePath(); + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + mPrefs = PreferenceManager.getDefaultSharedPreferences(getActivity()); + home_directory = mPrefs.getString(Config.pref_home, home_directory); + game_directory = mPrefs.getString(Config.pref_games, game_directory); + + Bundle b = getArguments(); + if (b != null) { + ImgBrowse = b.getBoolean("ImgBrowse", true); + if (games = b.getBoolean("games_entry", false)) { + if (b.getString("path_entry") != null) { + home_directory = b.getString("path_entry"); + } + } else { + if (b.getString("path_entry") != null) { + game_directory = b.getString("path_entry"); + } + } + } + + } + + public static HashSet getExternalMounts() { + final HashSet out = new HashSet(); + String reg = "(?i).*vold.*(vfat|ntfs|exfat|fat32|ext3|ext4|fuse).*rw.*"; + String s = ""; + try { + final Process process = new ProcessBuilder().command("mount") + .redirectErrorStream(true).start(); + process.waitFor(); + final InputStream is = process.getInputStream(); + final byte[] buffer = new byte[1024]; + while (is.read(buffer) != -1) { + s = s + new String(buffer); + } + is.close(); + } catch (final Exception e) { + + } + + final String[] lines = s.split("\n"); + for (String line : lines) { + if (StringUtils.containsIgnoreCase(line, "secure")) + continue; + if (StringUtils.containsIgnoreCase(line, "asec")) + continue; + if (line.matches(reg)) { + String[] parts = line.split(" "); + for (String part : parts) { + if (part.startsWith("/")) + if (!StringUtils.containsIgnoreCase(part, "vold")) + out.add(part); + } + } + } + return out; + } + + // Container Activity must implement this interface + public interface OnItemSelectedListener { + void onGameSelected(Uri uri); + void onFolderSelected(Uri uri); + } + + @Override + public void onAttach(Activity activity) { + super.onAttach(activity); + + // This makes sure that the container activity has implemented + // the callback interface. If not, it throws an exception + try { + mCallback = (OnItemSelectedListener) activity; + } catch (ClassCastException e) { + throw new ClassCastException(activity.toString() + + " must implement OnItemSelectedListener"); + } + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + return inflater.inflate(R.layout.activity_main, container, false); + } + + @Override + public void onViewCreated(View view, Bundle savedInstanceState) { + // setContentView(R.layout.activity_main); + parentActivity = getActivity(); + try { + File buttons = null; + String theme = mPrefs.getString(Config.pref_theme, null); + if (theme != null) { + buttons = new File(theme); + } + File file = new File(home_directory, "data/buttons.png"); + if (buttons != null && buttons.exists()) { + InputStream in = new FileInputStream(buttons); + OutputStream out = new FileOutputStream(file); + + // Transfer bytes from in to out + byte[] buf = new byte[1024]; + int len; + while ((len = in.read(buf)) > 0) { + out.write(buf, 0, len); + } + in.close(); + out.close(); + } else if (!file.exists()) { + file.createNewFile(); + OutputStream fo = new FileOutputStream(file); + InputStream png = parentActivity.getAssets() + .open("buttons.png"); + + byte[] buffer = new byte[4096]; + int len = 0; + while ((len = png.read(buffer)) != -1) { + fo.write(buffer, 0, len); + } + fo.close(); + png.close(); + } + } catch (IOException ioe) { + ioe.printStackTrace(); + } + + vib = (Vibrator) parentActivity + .getSystemService(Context.VIBRATOR_SERVICE); + + /* + * OnTouchListener viblist=new OnTouchListener() { + * + * public boolean onTouch(View v, MotionEvent event) { if + * (event.getActionMasked()==MotionEvent.ACTION_DOWN) vib.vibrate(50); + * return false; } }; + * + * findViewById(R.id.config).setOnTouchListener(viblist); + * findViewById(R.id.about).setOnTouchListener(viblist); + */ + + File home = new File(mPrefs.getString(Config.pref_home, home_directory)); + if (!home.exists() || !home.isDirectory()) { + MainActivity.showToastMessage(getActivity(), + getActivity().getString(R.string.config_home), + R.drawable.ic_notification, Toast.LENGTH_LONG); + } + + if (!ImgBrowse && !games) { + new LocateGames(R.array.flash).execute(home_directory); + } else { + new LocateGames(R.array.images).execute(game_directory); + } + } + + private final class LocateGames extends AsyncTask> { + + private int array; + + public LocateGames(int arrayType) { + this.array = arrayType; + } + + @Override + protected List doInBackground(String... paths) { + File storage = new File(paths[0]); + + // array of valid image file extensions + String[] mediaTypes = parentActivity.getResources().getStringArray(array); + FilenameFilter[] filter = new FilenameFilter[mediaTypes.length]; + + int i = 0; + for (final String type : mediaTypes) { + filter[i] = new FilenameFilter() { + + public boolean accept(File dir, String name) { + if (dir.getName().equals("obb") || dir.getName().equals("cache") + || dir.getName().startsWith(".") || name.startsWith(".")) { + return false; + } else if (array == R.array.flash && !name.startsWith("dc_")) { + return false; + } else { + return StringUtils.endsWithIgnoreCase(name, "." + type); + } + } + + }; + i++; + } + + FileUtils fileUtils = new FileUtils(); + int recurse = 2; + if (array == R.array.flash) { + recurse = 4; + } + Collection files = fileUtils.listFiles(storage, filter, recurse); + return (List) files; + } + + @Override + protected void onPostExecute(List items) { + if (items != null && !items.isEmpty()) { + final LinearLayout list = (LinearLayout) parentActivity.findViewById(R.id.game_list); + if (list != null) { + list.removeAllViews(); + } + + String heading = parentActivity.getString(R.string.games_listing); + createListHeader(heading, list, array == R.array.images); + for (int i = 0; i < items.size(); i++) { + createListItem(list, items.get(i), i, array == R.array.images); + } + list.invalidate(); + } else { + browseStorage(array == R.array.images); + } + } + } + + private void browseStorage(boolean images) { + if (images) { + navigate(new File(home_directory)); + } else { + if (game_directory.equals(sdcard.getAbsolutePath())) { + HashSet extStorage = FileBrowser.getExternalMounts(); + if (extStorage != null && !extStorage.isEmpty()) { + for (Iterator sd = extStorage.iterator(); sd.hasNext();) { + String sdCardPath = sd.next().replace("mnt/media_rw", "storage"); + if (!sdCardPath.equals(sdcard.getAbsolutePath())) { + if (new File(sdCardPath).canRead()) { + navigate(new File(sdCardPath)); + return; + } + } + } + } + } + navigate(new File(game_directory)); + } + } + + private static final class DirSort implements Comparator { + + @Override + public int compare(File filea, File fileb) { + + return ((filea.isFile() ? "a" : "b") + filea.getName().toLowerCase( + Locale.getDefault())) + .compareTo((fileb.isFile() ? "a" : "b") + + fileb.getName().toLowerCase(Locale.getDefault())); + } + } + + private void createListHeader(String header_text, View view, boolean hasBios) { + if (hasBios) { + final View childview = parentActivity.getLayoutInflater().inflate( + R.layout.bios_list_item, null, false); + + ((TextView) childview.findViewById(R.id.item_name)) + .setText(R.string.boot_bios); + + childview.setTag(null); + + orig_bg = childview.getBackground(); + + childview.findViewById(R.id.childview).setOnClickListener( + new OnClickListener() { + public void onClick(View view) { + File f = (File) view.getTag(); + vib.vibrate(50); + mCallback.onGameSelected(f != null ? Uri + .fromFile(f) : Uri.EMPTY); + vib.vibrate(250); + } + }); + + childview.findViewById(R.id.childview).setOnTouchListener( + new OnTouchListener() { + @SuppressWarnings("deprecation") + public boolean onTouch(View view, MotionEvent arg1) { + if (arg1.getActionMasked() == MotionEvent.ACTION_DOWN) { + view.setBackgroundColor(0xFF4F3FFF); + } else if (arg1.getActionMasked() == MotionEvent.ACTION_CANCEL + || arg1.getActionMasked() == MotionEvent.ACTION_UP) { + view.setBackgroundDrawable(orig_bg); + } + + return false; + + } + }); + ((ViewGroup) view).addView(childview); + } + + final View headerView = parentActivity.getLayoutInflater().inflate( + R.layout.head_list_item, null, false); + ((ImageView) headerView.findViewById(R.id.item_icon)) + .setImageResource(R.drawable.open_folder); + ((TextView) headerView.findViewById(R.id.item_name)) + .setText(header_text); + ((TextView) headerView.findViewById(R.id.item_name)) + .setTypeface(Typeface.DEFAULT_BOLD); + ((ViewGroup) view).addView(headerView); + + } + + private void createListItem(LinearLayout list, final File game, final int index, final boolean isGame) { + final View childview = parentActivity.getLayoutInflater().inflate( + R.layout.app_list_item, null, false); + + XMLParser xmlParser = new XMLParser(game, index, mPrefs); + xmlParser.setViewParent(parentActivity, childview, mCallback); + orig_bg = childview.getBackground(); + + childview.findViewById(R.id.childview).setOnClickListener( + new OnClickListener() { + public void onClick(View view) { + if (isGame) { + vib.vibrate(50); + mCallback.onGameSelected(game != null ? Uri + .fromFile(game) : Uri.EMPTY); + vib.vibrate(250); + } else { + vib.vibrate(50); + home_directory = game.getAbsolutePath().substring(0, + game.getAbsolutePath().lastIndexOf(File.separator)).replace("/data", ""); + if (!DataDirectoryBIOS()) { + MainActivity.showToastMessage(getActivity(), + getActivity().getString(R.string.config_data, home_directory), + R.drawable.ic_notification, Toast.LENGTH_LONG); + } + mPrefs.edit().putString("home_directory", home_directory).commit(); + mCallback.onFolderSelected(Uri.fromFile(new File(home_directory))); + JNIdc.config(home_directory); + } + } + }); + + childview.findViewById(R.id.childview).setOnTouchListener( + new OnTouchListener() { + @SuppressWarnings("deprecation") + public boolean onTouch(View view, MotionEvent arg1) { + if (arg1.getActionMasked() == MotionEvent.ACTION_DOWN) { + view.setBackgroundColor(0xFF4F3FFF); + } else if (arg1.getActionMasked() == MotionEvent.ACTION_CANCEL + || arg1.getActionMasked() == MotionEvent.ACTION_UP) { + view.setBackgroundDrawable(orig_bg); + } + return false; + + } + }); + list.addView(childview); + xmlParser.execute(game.getName()); + } + + void navigate(final File root_sd) { + LinearLayout v = (LinearLayout) parentActivity + .findViewById(R.id.game_list); + v.removeAllViews(); + + ArrayList list = new ArrayList(); + + final String heading = root_sd.getAbsolutePath(); + createListHeader(heading, v, false); + + File flist[] = root_sd.listFiles(); + File parent = root_sd.getParentFile(); + + list.add(null); + + if (parent != null) { + list.add(parent); + } + + if (flist != null) { + Arrays.sort(flist, new DirSort()); + Collections.addAll(list, flist); + } + + for (final File file : list) { + if (file != null && !file.isDirectory() && !file.getAbsolutePath().equals("/data")) + continue; + final View childview = parentActivity.getLayoutInflater().inflate( + R.layout.app_list_item, null, false); + + if (file == null) { + ((TextView) childview.findViewById(R.id.item_name)).setText(R.string.folder_select); + } else if (file == parent) + ((TextView) childview.findViewById(R.id.item_name)).setText(".."); + else + ((TextView) childview.findViewById(R.id.item_name)).setText(file.getName()); + + ((ImageView) childview.findViewById(R.id.item_icon)) + .setImageResource(file == null ? R.drawable.config + : file.isDirectory() ? R.drawable.open_folder + : R.drawable.disk_unknown); + + childview.setTag(file); + + orig_bg = childview.getBackground(); + + // vw.findViewById(R.id.childview).setBackgroundColor(0xFFFFFFFF); + + childview.findViewById(R.id.childview).setOnClickListener( + new OnClickListener() { + public void onClick(View view) { + if (file != null && file.isDirectory()) { + navigate(file); + ScrollView sv = (ScrollView) parentActivity + .findViewById(R.id.game_scroller); + sv.scrollTo(0, 0); + vib.vibrate(50); + } else if (view.getTag() == null) { + vib.vibrate(250); + + if (games) { + game_directory = heading; + mPrefs.edit().putString(Config.pref_games, heading).commit(); + mCallback.onFolderSelected(Uri.fromFile(new File(game_directory))); + } else { + home_directory = heading.replace("/data", ""); + mPrefs.edit().putString(Config.pref_home, home_directory).commit(); + if (!DataDirectoryBIOS()) { + MainActivity.showToastMessage(getActivity(), + getActivity().getString(R.string.config_data, home_directory), + R.drawable.ic_notification, Toast.LENGTH_LONG); + } + mCallback.onFolderSelected(Uri.fromFile(new File(home_directory))); + JNIdc.config(home_directory); + } + + } + } + }); + + childview.findViewById(R.id.childview).setOnTouchListener( + new OnTouchListener() { + @SuppressWarnings("deprecation") + public boolean onTouch(View view, MotionEvent event) { + if (event.getActionMasked() == MotionEvent.ACTION_DOWN) { + view.setBackgroundColor(0xFF4F3FFF); + } else if (event.getActionMasked() == MotionEvent.ACTION_CANCEL + || event.getActionMasked() == MotionEvent.ACTION_UP) { + view.setBackgroundDrawable(orig_bg); + } + + return false; + + } + }); + v.addView(childview); + } + v.invalidate(); + } + + private boolean DataDirectoryBIOS() { + File data_directory = new File(home_directory, "data"); + if (!data_directory.exists() || !data_directory.isDirectory()) { + data_directory.mkdirs(); + File bios = new File(home_directory, "dc_boot.bin"); + boolean success = bios.renameTo(new File(home_directory, "data/dc_boot.bin")); + File flash = new File(home_directory, "dc_flash.bin"); + success = flash.renameTo(new File(home_directory, "data/dc_flash.bin")); + return success; + } else { + File bios = new File(home_directory, "data/dc_boot.bin"); + File flash = new File(home_directory, "data/dc_flash.bin"); + if (bios.exists() && flash.exists()) { + return true; + } else { + return false; + } + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/GL2JNIActivity.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/GL2JNIActivity.java new file mode 100644 index 000000000..70cb7aa6c --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/GL2JNIActivity.java @@ -0,0 +1,601 @@ +package com.reicast.emulator; + +import java.util.Arrays; +import java.util.HashMap; + +import tv.ouya.console.api.OuyaController; +import android.annotation.TargetApi; +import android.app.Activity; +import android.content.SharedPreferences; +import android.content.res.Configuration; +import android.net.Uri; +import android.os.Build; +import android.os.Bundle; +import android.preference.PreferenceManager; +import android.util.Log; +import android.view.Gravity; +import android.view.InputDevice; +import android.view.KeyEvent; +import android.view.MotionEvent; +import android.view.ViewConfiguration; +import android.view.ViewGroup.LayoutParams; +import android.view.Window; +import android.view.WindowManager; +import android.widget.LinearLayout; +import android.widget.PopupWindow; + +import com.reicast.emulator.config.Config; +import com.reicast.emulator.emu.GL2JNIView; +import com.reicast.emulator.emu.JNIdc; +import com.reicast.emulator.emu.OnScreenMenu; +import com.reicast.emulator.emu.OnScreenMenu.FpsPopup; +import com.reicast.emulator.emu.OnScreenMenu.MainPopup; +import com.reicast.emulator.emu.OnScreenMenu.VmuPopup; +import com.reicast.emulator.periph.Gamepad; +import com.reicast.emulator.periph.MOGAInput; +import com.reicast.emulator.periph.SipEmulator; + +@TargetApi(Build.VERSION_CODES.HONEYCOMB_MR1) +public class GL2JNIActivity extends Activity { + public GL2JNIView mView; + OnScreenMenu menu; + public MainPopup popUp; + VmuPopup vmuPop; + FpsPopup fpsPop; + MOGAInput moga = new MOGAInput(); + private SharedPreferences prefs; + + private Config config; + private Gamepad pad = new Gamepad(); + + public static byte[] syms; + + @Override + protected void onCreate(Bundle icicle) { + requestWindowFeature(Window.FEATURE_NO_TITLE); + prefs = PreferenceManager.getDefaultSharedPreferences(this); + if (prefs.getInt(Config.pref_rendertype, 2) == 2) { + getWindow().setFlags( + WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED, + WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED); + } + config = new Config(GL2JNIActivity.this); + config.getConfigurationPrefs(); + menu = new OnScreenMenu(GL2JNIActivity.this, prefs); + + pad.isXperiaPlay = pad.IsXperiaPlay(); + pad.isOuyaOrTV = pad.IsOuyaOrTV(GL2JNIActivity.this); +// pad.isNvidiaShield = pad.IsNvidiaShield(); + + /* + * try { //int rID = + * getResources().getIdentifier("fortyonepost.com.lfas:raw/syms.map", + * null, null); //get the file as a stream InputStream is = + * getResources().openRawResource(R.raw.syms); + * + * syms = new byte[(int) is.available()]; is.read(syms); is.close(); } + * catch (IOException e) { e.getMessage(); e.printStackTrace(); } + */ + + + String fileName = null; + + // Call parent onCreate() + super.onCreate(icicle); + OuyaController.init(this); + + // Populate device descriptor-to-player-map from preferences + pad.deviceDescriptor_PlayerNum.put( + prefs.getString(Gamepad.pref_player1, null), 0); + pad.deviceDescriptor_PlayerNum.put( + prefs.getString(Gamepad.pref_player2, null), 1); + pad.deviceDescriptor_PlayerNum.put( + prefs.getString(Gamepad.pref_player3, null), 2); + pad.deviceDescriptor_PlayerNum.put( + prefs.getString(Gamepad.pref_player4, null), 3); + pad.deviceDescriptor_PlayerNum.remove(null); + + moga.onCreate(this, pad); + moga.mListener.setPlayerNum(1); + + boolean controllerTwoConnected = false; + boolean controllerThreeConnected = false; + boolean controllerFourConnected = false; + + for (HashMap.Entry e : pad.deviceDescriptor_PlayerNum + .entrySet()) { + String descriptor = e.getKey(); + Integer playerNum = e.getValue(); + + switch (playerNum) { + case 1: + if (descriptor != null) + controllerTwoConnected = true; + break; + case 2: + if (descriptor != null) + controllerThreeConnected = true; + break; + case 3: + if (descriptor != null) + controllerFourConnected = true; + break; + } + } + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { + + JNIdc.initControllers(new boolean[] { controllerTwoConnected, + controllerThreeConnected, controllerFourConnected }); + int joys[] = InputDevice.getDeviceIds(); + for (int joy: joys) { + String descriptor = null; + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) { + descriptor = InputDevice.getDevice(joy).getDescriptor(); + } else { + descriptor = InputDevice.getDevice(joy).getName(); + } + Log.d("reicast", "InputDevice ID: " + joy); + Log.d("reicast", + "InputDevice Name: " + + InputDevice.getDevice(joy).getName()); + Log.d("reicast", "InputDevice Descriptor: " + descriptor); + pad.deviceId_deviceDescriptor.put(joy, descriptor); + } + + for (int joy :joys) { + Integer playerNum = pad.deviceDescriptor_PlayerNum + .get(pad.deviceId_deviceDescriptor.get(joy)); + + if (playerNum != null) { + String id = pad.portId[playerNum]; + pad.custom[playerNum] = prefs.getBoolean(Gamepad.pref_js_modified + id, false); + pad.compat[playerNum] = prefs.getBoolean(Gamepad.pref_js_compat + id, false); + pad.joystick[playerNum] = prefs.getBoolean(Gamepad.pref_js_merged + id, false); + if (InputDevice.getDevice(joy).getName() + .contains(Gamepad.controllers_gamekey)) { + if (pad.custom[playerNum]) { + pad.setCustomMapping(id, playerNum, prefs); + } else { + pad.map[playerNum] = pad.getConsoleController(); + } + } else if (!pad.compat[playerNum]) { + if (pad.custom[playerNum]) { + pad.setCustomMapping(id, playerNum, prefs); + } else if (InputDevice.getDevice(joy).getName() + .equals(Gamepad.controllers_sony)) { + pad.map[playerNum] = pad.getConsoleController(); + } else if (InputDevice.getDevice(joy).getName() + .equals(Gamepad.controllers_xbox)) { + pad.map[playerNum] = pad.getConsoleController(); + } else if (InputDevice.getDevice(joy).getName() + .contains(Gamepad.controllers_shield)) { + pad.map[playerNum] = pad.getConsoleController(); + } else if (InputDevice.getDevice(joy).getName() + .contains(Gamepad.controllers_play)) { + pad.map[playerNum] = pad.getXPlayController(); + } else if (!pad.isActiveMoga[playerNum]) { // Ouya controller + pad.map[playerNum] = pad.getOUYAController(); + } + } else { + pad.getCompatibilityMap(playerNum, id, prefs); + } + pad.initJoyStickLayout(playerNum); + } else { + pad.runCompatibilityMode(joy, prefs); + } + } + if (joys.length == 0) { + pad.fullCompatibilityMode(prefs); + } + } else { + pad.fullCompatibilityMode(prefs); + } + + config.loadConfigurationPrefs(); + + // When viewing a resource, pass its URI to the native code for opening + if (getIntent().getAction().equals("com.reicast.EMULATOR")) + fileName = Uri.decode(getIntent().getData().toString()); + + // Create the actual GLES view + mView = new GL2JNIView(GL2JNIActivity.this, config, fileName, false, + prefs.getInt(Config.pref_renderdepth, 24), 0, false); + setContentView(mView); + + //setup mic + boolean micPluggedIn = prefs.getBoolean(Config.pref_mic, false); + if(micPluggedIn){ + SipEmulator sip = new SipEmulator(); + sip.startRecording(); + JNIdc.setupMic(sip); + } + + popUp = menu.new MainPopup(this); + vmuPop = menu.new VmuPopup(this); + if(prefs.getBoolean(Config.pref_vmu, false)){ + //kind of a hack - if the user last had the vmu on screen + //inverse it and then "toggle" + prefs.edit().putBoolean(Config.pref_vmu, false).commit(); + //can only display a popup after onCreate + mView.post(new Runnable() { + public void run() { + toggleVmu(); + } + }); + } + JNIdc.setupVmu(menu.getVmu()); + if (prefs.getBoolean(Config.pref_showfps, false)) { + fpsPop = menu.new FpsPopup(this); + mView.setFpsDisplay(fpsPop); + mView.post(new Runnable() { + public void run() { + displayFPS(); + } + }); + } + } + + @Override + public boolean onGenericMotionEvent(MotionEvent event) { + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { + + Integer playerNum = Arrays.asList(pad.name).indexOf(event.getDeviceId()); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && playerNum == -1) { + playerNum = pad.deviceDescriptor_PlayerNum + .get(pad.deviceId_deviceDescriptor.get(event.getDeviceId())); + } else { + playerNum = -1; + } + + if (playerNum == null || playerNum == -1) + return false; + + if (!pad.compat[playerNum]) { + + // Joystick + if ((event.getSource() & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) { + + // do other things with joystick + float LS_X = event.getAxisValue(OuyaController.AXIS_LS_X); + float LS_Y = event.getAxisValue(OuyaController.AXIS_LS_Y); + float RS_X = event.getAxisValue(OuyaController.AXIS_RS_X); + float RS_Y = event.getAxisValue(OuyaController.AXIS_RS_Y); + float L2 = event.getAxisValue(OuyaController.AXIS_L2); + float R2 = event.getAxisValue(OuyaController.AXIS_R2); + + if (!pad.joystick[playerNum]) { + pad.previousLS_X[playerNum] = pad.globalLS_X[playerNum]; + pad.previousLS_Y[playerNum] = pad.globalLS_Y[playerNum]; + pad.globalLS_X[playerNum] = LS_X; + pad.globalLS_Y[playerNum] = LS_Y; + } + + GL2JNIView.jx[playerNum] = (int) (LS_X * 126); + GL2JNIView.jy[playerNum] = (int) (LS_Y * 126); + + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + + if (prefs.getBoolean(Gamepad.pref_js_rbuttons + pad.portId[playerNum], true)) { + if (RS_Y > 0.25) { + handle_key(playerNum, pad.map[playerNum][0]/* A */, true); + pad.wasKeyStick[playerNum] = true; + } else if (RS_Y < 0.25) { + handle_key(playerNum, pad.map[playerNum][1]/* B */, true); + pad.wasKeyStick[playerNum] = true; + } else if (pad.wasKeyStick[playerNum]){ + handle_key(playerNum, pad.map[playerNum][0], false); + handle_key(playerNum, pad.map[playerNum][1], false); + pad.wasKeyStick[playerNum] = false; + } + } else { + if (RS_Y > 0.25) { + GL2JNIView.rt[playerNum] = (int) (RS_Y * 255); + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + } else if (RS_Y < 0.25) { + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + GL2JNIView.lt[playerNum] = (int) (-(RS_Y) * 255); + } + } + } + + } + mView.pushInput(); + if (!pad.joystick[playerNum] && (pad.globalLS_X[playerNum] == pad.previousLS_X[playerNum] && pad.globalLS_Y[playerNum] == pad.previousLS_Y[playerNum]) + || (pad.previousLS_X[playerNum] == 0.0f && pad.previousLS_Y[playerNum] == 0.0f)) + // Only handle Left Stick on an Xbox 360 controller if there was + // some actual motion on the stick, + // so otherwise the event can be handled as a DPAD event + return false; + else + return true; + + } else { + return false; + } + } + + public boolean motionEventHandler(Integer playerNum, com.bda.controller.MotionEvent event) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { + + if (playerNum == null || playerNum == -1) + return false; + + if (!pad.compat[playerNum]) { + + // do other things with joystick + float LS_X = event.getAxisValue(OuyaController.AXIS_LS_X); + float LS_Y = event.getAxisValue(OuyaController.AXIS_LS_Y); + float RS_X = event.getAxisValue(OuyaController.AXIS_RS_X); + float RS_Y = event.getAxisValue(OuyaController.AXIS_RS_Y); + float L2 = event.getAxisValue(OuyaController.AXIS_L2); + float R2 = event.getAxisValue(OuyaController.AXIS_R2); + + if (!pad.joystick[playerNum]) { + pad.previousLS_X[playerNum] = pad.globalLS_X[playerNum]; + pad.previousLS_Y[playerNum] = pad.globalLS_Y[playerNum]; + pad.globalLS_X[playerNum] = LS_X; + pad.globalLS_Y[playerNum] = LS_Y; + } + + GL2JNIView.jx[playerNum] = (int) (LS_X * 126); + GL2JNIView.jy[playerNum] = (int) (LS_Y * 126); + + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + + if (prefs.getBoolean(Gamepad.pref_js_rbuttons + pad.portId[playerNum], true)) { + if (RS_Y > 0.25) { + handle_key(playerNum, pad.map[playerNum][0]/* A */, true); + pad.wasKeyStick[playerNum] = true; + } else if (RS_Y < 0.25) { + handle_key(playerNum, pad.map[playerNum][1]/* B */, true); + pad.wasKeyStick[playerNum] = true; + } else if (pad.wasKeyStick[playerNum]){ + handle_key(playerNum, pad.map[playerNum][0], false); + handle_key(playerNum, pad.map[playerNum][1], false); + pad.wasKeyStick[playerNum] = false; + } + } else { + if (RS_Y > 0.25) { + GL2JNIView.rt[playerNum] = (int) (RS_Y * 255); + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + } else if (RS_Y < 0.25) { + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + GL2JNIView.lt[playerNum] = (int) (-(RS_Y) * 255); + } + } + + } + mView.pushInput(); + if (!pad.joystick[playerNum] && (pad.globalLS_X[playerNum] == pad.previousLS_X[playerNum] && pad.globalLS_Y[playerNum] == pad.previousLS_Y[playerNum]) + || (pad.previousLS_X[playerNum] == 0.0f && pad.previousLS_Y[playerNum] == 0.0f)) + // Only handle Left Stick on an Xbox 360 controller if there was + // some actual motion on the stick, + // so otherwise the event can be handled as a DPAD event + return false; + else + return true; + + } else { + return false; + } + } + + public boolean simulatedTouchEvent(int playerNum, float L2, float R2) { + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + mView.pushInput(); + return true; + } + + public boolean handle_key(Integer playerNum, int kc, boolean down) { + if (playerNum == null || playerNum == -1) + return false; + if (kc == pad.getSelectButtonCode()) { + return false; + } + + boolean rav = false; + for (int i = 0; i < pad.map[playerNum].length; i += 2) { + if (pad.map[playerNum][i + 0] == kc) { + if (down) + GL2JNIView.kcode_raw[playerNum] &= ~pad.map[playerNum][i + 1]; + else + GL2JNIView.kcode_raw[playerNum] |= pad.map[playerNum][i + 1]; + rav = true; + break; + } + } + mView.pushInput(); + return rav; + + } + + public void displayPopUp(PopupWindow popUp) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + popUp.showAtLocation(mView, Gravity.BOTTOM, 0, 60); + } else { + popUp.showAtLocation(mView, Gravity.BOTTOM, 0, 0); + } + popUp.update(LayoutParams.WRAP_CONTENT, + LayoutParams.WRAP_CONTENT); + } + + public void displayDebug(PopupWindow popUpDebug) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + popUpDebug.showAtLocation(mView, Gravity.BOTTOM, 0, 60); + } else { + popUpDebug.showAtLocation(mView, Gravity.BOTTOM, 0, 0); + } + popUpDebug.update(LayoutParams.WRAP_CONTENT, + LayoutParams.WRAP_CONTENT); + } + + public void displayFPS() { + fpsPop.showAtLocation(mView, Gravity.TOP | Gravity.LEFT, 20, 20); + fpsPop.update(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); + } + + public void toggleVmu() { + boolean showFloating = !prefs.getBoolean(Config.pref_vmu, false); + if (showFloating) { + if (popUp.isShowing()) { + popUp.dismiss(); + } + //remove from popup menu + popUp.hideVmu(); + //add to floating window + vmuPop.showVmu(); + vmuPop.showAtLocation(mView, Gravity.TOP | Gravity.RIGHT, 4, 4); + vmuPop.update(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); + } else { + vmuPop.dismiss(); + //remove from floating window + vmuPop.hideVmu(); + //add back to popup menu + popUp.showVmu(); + } + prefs.edit().putBoolean(Config.pref_vmu, showFloating).commit(); + } + + public void displayConfig(PopupWindow popUpConfig) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + popUpConfig.showAtLocation(mView, Gravity.BOTTOM, 0, 60); + } else { + popUpConfig.showAtLocation(mView, Gravity.BOTTOM, 0, 0); + } + popUpConfig.update(LayoutParams.WRAP_CONTENT, + LayoutParams.WRAP_CONTENT); + } + + public boolean onKeyUp(int keyCode, KeyEvent event) { + Integer playerNum = Arrays.asList(pad.name).indexOf(event.getDeviceId()); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && playerNum == -1) { + playerNum = pad.deviceDescriptor_PlayerNum + .get(pad.deviceId_deviceDescriptor.get(event.getDeviceId())); + } else { + playerNum = -1; + } + + if (playerNum != null && playerNum != -1) { + if (pad.compat[playerNum] || pad.custom[playerNum]) { + String id = pad.portId[playerNum]; + if (keyCode == prefs.getInt(Gamepad.pref_button_l + id, + KeyEvent.KEYCODE_BUTTON_L1) + || keyCode == prefs.getInt(Gamepad.pref_button_r + id, + KeyEvent.KEYCODE_BUTTON_R1)) { + return simulatedTouchEvent(playerNum, 0.0f, 0.0f); + } + } + } + + return handle_key(playerNum, keyCode, false) + || super.onKeyUp(keyCode, event); + } + + public boolean onKeyDown(int keyCode, KeyEvent event) { + Integer playerNum = Arrays.asList(pad.name).indexOf(event.getDeviceId()); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && playerNum == -1) { + playerNum = pad.deviceDescriptor_PlayerNum + .get(pad.deviceId_deviceDescriptor.get(event.getDeviceId())); + } else { + playerNum = -1; + } + + if (playerNum != null && playerNum != -1) { + if (pad.compat[playerNum] || pad.custom[playerNum]) { + String id = pad.portId[playerNum]; + if (keyCode == prefs.getInt(Gamepad.pref_button_l + id, KeyEvent.KEYCODE_BUTTON_L1)) { + return simulatedTouchEvent(playerNum, 1.0f, 0.0f); + } + if (keyCode == prefs.getInt(Gamepad.pref_button_r + id, KeyEvent.KEYCODE_BUTTON_R1)) { + return simulatedTouchEvent(playerNum, 0.0f, 1.0f); + } + } + } + + if (handle_key(playerNum, keyCode, true)) { + if (playerNum == 0) + JNIdc.hide_osd(); + return true; + } + + if (keyCode == pad.getSelectButtonCode()) { + return showMenu(); + } + if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.GINGERBREAD_MR1 + || (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH + && ViewConfiguration.get(this).hasPermanentMenuKey())) { + if (keyCode == KeyEvent.KEYCODE_MENU) { + return showMenu(); + } + } + if (keyCode == KeyEvent.KEYCODE_BACK) { + if (pad.isXperiaPlay) { + return true; + } else { + return showMenu(); + } + } + return super.onKeyDown(keyCode, event); + } + + public GL2JNIView getGameView() { + return mView; + } + + public void screenGrab() { + mView.screenGrab(); + } + + private boolean showMenu() { + if (popUp != null) { + if (!menu.dismissPopUps()) { + if (!popUp.isShowing()) { + displayPopUp(popUp); + } else { + popUp.dismiss(); + } + } else { + popUp.dismiss(); + } + } + return true; + } + + @Override + protected void onPause() { + super.onPause(); + mView.onPause(); + moga.onPause(); + } + + @Override + protected void onDestroy() { + super.onDestroy(); + moga.onDestroy(); + } + + @Override + protected void onStop() { + // TODO Auto-generated method stub + JNIdc.stop(); + mView.onStop(); + super.onStop(); + } + + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + } + + @Override + protected void onResume() { + super.onResume(); + mView.onResume(); + moga.onResume(); + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/GL2JNINative.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/GL2JNINative.java new file mode 100644 index 000000000..22359b131 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/GL2JNINative.java @@ -0,0 +1,649 @@ +package com.reicast.emulator; + +import java.util.Arrays; +import java.util.HashMap; + +import tv.ouya.console.api.OuyaController; +import android.annotation.TargetApi; +import android.app.NativeActivity; +import android.content.SharedPreferences; +import android.content.res.Configuration; +import android.net.Uri; +import android.os.Build; +import android.os.Bundle; +import android.os.Handler; +import android.preference.PreferenceManager; +import android.util.Log; +import android.view.Gravity; +import android.view.InputDevice; +import android.view.KeyEvent; +import android.view.MotionEvent; +import android.view.ViewConfiguration; +import android.view.ViewGroup.LayoutParams; +import android.view.Window; +import android.view.WindowManager; +import android.widget.LinearLayout; +import android.widget.PopupWindow; +import android.widget.Toast; + +import com.reicast.emulator.config.Config; +import com.reicast.emulator.emu.GL2JNIView; +import com.reicast.emulator.emu.JNIdc; +import com.reicast.emulator.emu.OnScreenMenu; +import com.reicast.emulator.emu.OnScreenMenu.FpsPopup; +import com.reicast.emulator.emu.OnScreenMenu.MainPopup; +import com.reicast.emulator.emu.OnScreenMenu.VmuPopup; +import com.reicast.emulator.periph.Gamepad; +import com.reicast.emulator.periph.MOGAInput; +import com.reicast.emulator.periph.SipEmulator; + +@TargetApi(Build.VERSION_CODES.HONEYCOMB_MR1) +public class GL2JNINative extends NativeActivity { + public GL2JNIView mView; + OnScreenMenu menu; + public MainPopup popUp; + VmuPopup vmuPop; + FpsPopup fpsPop; + MOGAInput moga = new MOGAInput(); + private SharedPreferences prefs; + + private Config config; + private Gamepad pad = new Gamepad(); + + public static byte[] syms; + + static { + System.loadLibrary("sexplay"); + } + + native int RegisterNative(boolean touchpad); + + @TargetApi(Build.VERSION_CODES.JELLY_BEAN) + @Override + protected void onCreate(Bundle icicle) { + requestWindowFeature(Window.FEATURE_NO_TITLE); + prefs = PreferenceManager.getDefaultSharedPreferences(this); + if (prefs.getInt(Config.pref_rendertype, 2) == 2) { + getWindow().setFlags( + WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED, + WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED); + } + getWindow().takeSurface(null); + + pad.isXperiaPlay = pad.IsXperiaPlay(); + pad.isOuyaOrTV = pad.IsOuyaOrTV(GL2JNINative.this); +// isNvidiaShield = Gamepad.IsNvidiaShield(); + + RegisterNative(pad.isXperiaPlay); + + config = new Config(GL2JNINative.this); + config.getConfigurationPrefs(); + menu = new OnScreenMenu(GL2JNINative.this, prefs); + + String fileName = null; + + // Call parent onCreate() + super.onCreate(icicle); + OuyaController.init(this); + + // Populate device descriptor-to-player-map from preferences + pad.deviceDescriptor_PlayerNum.put( + prefs.getString(Gamepad.pref_player1, null), 0); + pad.deviceDescriptor_PlayerNum.put( + prefs.getString(Gamepad.pref_player2, null), 1); + pad.deviceDescriptor_PlayerNum.put( + prefs.getString(Gamepad.pref_player3, null), 2); + pad.deviceDescriptor_PlayerNum.put( + prefs.getString(Gamepad.pref_player4, null), 3); + pad.deviceDescriptor_PlayerNum.remove(null); + + moga.onCreate(this, pad); + moga.mListener.setPlayerNum(1); + + boolean controllerTwoConnected = false; + boolean controllerThreeConnected = false; + boolean controllerFourConnected = false; + + for (HashMap.Entry e : pad.deviceDescriptor_PlayerNum + .entrySet()) { + String descriptor = e.getKey(); + Integer playerNum = e.getValue(); + + switch (playerNum) { + case 1: + if (descriptor != null) + controllerTwoConnected = true; + break; + case 2: + if (descriptor != null) + controllerThreeConnected = true; + break; + case 3: + if (descriptor != null) + controllerFourConnected = true; + break; + } + } + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { + + JNIdc.initControllers(new boolean[] { controllerTwoConnected, + controllerThreeConnected, controllerFourConnected }); + int joys[] = InputDevice.getDeviceIds(); + for (int joy : joys) { + String descriptor = null; + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) { + descriptor = InputDevice.getDevice(joy).getDescriptor(); + } else { + descriptor = InputDevice.getDevice(joy).getName(); + } + Log.d("reicast", "InputDevice ID: " + joy); + Log.d("reicast", + "InputDevice Name: " + + InputDevice.getDevice(joy).getName()); + if (pad.isXperiaPlay) { + if (InputDevice.getDevice(joy).getName() + .contains(Gamepad.controllers_play_gp)) { + pad.keypadZeus[0] = joy; + } + if (InputDevice.getDevice(joy).getName() + .contains(Gamepad.controllers_play_tp)) { + pad.keypadZeus[1] = joy; + } + } + Log.d("reicast", "InputDevice Descriptor: " + descriptor); + pad.deviceId_deviceDescriptor.put(joy, descriptor); + } + + for (int joy : joys) { + Integer playerNum = pad.deviceDescriptor_PlayerNum + .get(pad.deviceId_deviceDescriptor.get(joy)); + + if (playerNum != null) { + String id = pad.portId[playerNum]; + pad.custom[playerNum] = prefs.getBoolean(Gamepad.pref_js_modified + id, false); + pad.compat[playerNum] = prefs.getBoolean(Gamepad.pref_js_compat + id, false); + pad.joystick[playerNum] = prefs.getBoolean(Gamepad.pref_js_merged + id, false); + if (InputDevice.getDevice(joy).getName() + .contains(Gamepad.controllers_gamekey)) { +// if (pad.custom[playerNum]) { +// setCustomMapping(id, playerNum); +// } else { +// pad.map[playerNum] = pad.getConsoleController(); +// } + new Handler().post(new Runnable() { + public void run() { + Toast.makeText(getApplicationContext(), R.string.controller_unavailable, + Toast.LENGTH_SHORT).show(); + finish(); + } + }); + } else if (InputDevice.getDevice(joy).getName() + .contains(Gamepad.controllers_play) ) { + for (int keys : pad.keypadZeus) { + pad.playerNumX.put(keys, playerNum); + } + if (pad.custom[playerNum]) { + pad.setCustomMapping(id, playerNum, prefs); + } else { + pad.map[playerNum] = pad.getXPlayController(); + } + } else if (!pad.compat[playerNum]) { + if (pad.custom[playerNum]) { + pad.setCustomMapping(id, playerNum, prefs); + } else if (InputDevice.getDevice(joy).getName() + .equals(Gamepad.controllers_sony)) { + pad.map[playerNum] = pad.getConsoleController(); + } else if (InputDevice.getDevice(joy).getName() + .equals(Gamepad.controllers_xbox)) { + pad.map[playerNum] = pad.getConsoleController(); + } else if (InputDevice.getDevice(joy).getName() + .contains(Gamepad.controllers_shield)) { + pad.map[playerNum] = pad.getConsoleController(); + } else if (!pad.isActiveMoga[playerNum]) { // Ouya controller + pad.map[playerNum] = pad.getOUYAController(); + } + } else{ + pad.getCompatibilityMap(playerNum, id, prefs); + } + pad.initJoyStickLayout(playerNum); + pad.playerNumX.put(joy, playerNum); + } else { + pad.runCompatibilityMode(joy, prefs); + } + } + } + + config.loadConfigurationPrefs(); + + // When viewing a resource, pass its URI to the native code for opening + if (getIntent().getAction().equals("com.reicast.EMULATOR")) + fileName = Uri.decode(getIntent().getData().toString()); + + // Create the actual GLES view + mView = new GL2JNIView(getApplication(), config, fileName, false, + prefs.getInt(Config.pref_renderdepth, 24), 0, false); + setContentView(mView); + + //setup mic + boolean micPluggedIn = prefs.getBoolean(Config.pref_mic, false); + if(micPluggedIn){ + SipEmulator sip = new SipEmulator(); + sip.startRecording(); + JNIdc.setupMic(sip); + } + + popUp = menu.new MainPopup(this); + vmuPop = menu.new VmuPopup(this); + if(prefs.getBoolean(Config.pref_vmu, false)){ + //kind of a hack - if the user last had the vmu on screen + //inverse it and then "toggle" + prefs.edit().putBoolean(Config.pref_vmu, false).commit(); + //can only display a popup after onCreate + mView.post(new Runnable() { + public void run() { + toggleVmu(); + } + }); + } + JNIdc.setupVmu(menu.getVmu()); + if (prefs.getBoolean(Config.pref_showfps, false)) { + fpsPop = menu.new FpsPopup(this); + mView.setFpsDisplay(fpsPop); + mView.post(new Runnable() { + public void run() { + displayFPS(); + } + }); + } + } + + public boolean simulatedTouchEvent(int playerNum, float L2, float R2) { + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + mView.pushInput(); + return true; + } + + public void displayPopUp(PopupWindow popUp) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + popUp.showAtLocation(mView, Gravity.BOTTOM, 0, 60); + } else { + popUp.showAtLocation(mView, Gravity.BOTTOM, 0, 0); + } + popUp.update(LayoutParams.WRAP_CONTENT, + LayoutParams.WRAP_CONTENT); + } + + public void displayDebug(PopupWindow popUpDebug) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + popUpDebug.showAtLocation(mView, Gravity.BOTTOM, 0, 60); + } else { + popUpDebug.showAtLocation(mView, Gravity.BOTTOM, 0, 0); + } + popUpDebug.update(LayoutParams.WRAP_CONTENT, + LayoutParams.WRAP_CONTENT); + } + + public void displayFPS() { + fpsPop.showAtLocation(mView, Gravity.TOP | Gravity.LEFT, 20, 20); + fpsPop.update(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); + } + + public void toggleVmu() { + boolean showFloating = !prefs.getBoolean(Config.pref_vmu, false); + if (showFloating) { + if (popUp.isShowing()) { + popUp.dismiss(); + } + //remove from popup menu + popUp.hideVmu(); + //add to floating window + vmuPop.showVmu(); + vmuPop.showAtLocation(mView, Gravity.TOP | Gravity.RIGHT, 4, 4); + vmuPop.update(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); + } else { + vmuPop.dismiss(); + //remove from floating window + vmuPop.hideVmu(); + //add back to popup menu + popUp.showVmu(); + } + prefs.edit().putBoolean(Config.pref_vmu, showFloating).commit(); + } + + public void displayConfig(PopupWindow popUpConfig) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + popUpConfig.showAtLocation(mView, Gravity.BOTTOM, 0, 60); + } else { + popUpConfig.showAtLocation(mView, Gravity.BOTTOM, 0, 0); + } + popUpConfig.update(LayoutParams.WRAP_CONTENT, + LayoutParams.WRAP_CONTENT); + } + + public boolean motionEventHandler(Integer playerNum, com.bda.controller.MotionEvent event) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { + + if (playerNum == null || playerNum == -1) + return false; + + if (!pad.compat[playerNum]) { + + // do other things with joystick + float LS_X = event.getAxisValue(OuyaController.AXIS_LS_X); + float LS_Y = event.getAxisValue(OuyaController.AXIS_LS_Y); + float RS_X = event.getAxisValue(OuyaController.AXIS_RS_X); + float RS_Y = event.getAxisValue(OuyaController.AXIS_RS_Y); + float L2 = event.getAxisValue(OuyaController.AXIS_L2); + float R2 = event.getAxisValue(OuyaController.AXIS_R2); + + if (!pad.joystick[playerNum]) { + pad.previousLS_X[playerNum] = pad.globalLS_X[playerNum]; + pad.previousLS_Y[playerNum] = pad.globalLS_Y[playerNum]; + pad.globalLS_X[playerNum] = LS_X; + pad.globalLS_Y[playerNum] = LS_Y; + } + + GL2JNIView.jx[playerNum] = (int) (LS_X * 126); + GL2JNIView.jy[playerNum] = (int) (LS_Y * 126); + + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + + if (prefs.getBoolean(Gamepad.pref_js_rbuttons + pad.portId[playerNum], true)) { + if (RS_Y > 0.25) { + handle_key(playerNum, pad.map[playerNum][0]/* A */, true); + pad.wasKeyStick[playerNum] = true; + } else if (RS_Y < 0.25) { + handle_key(playerNum, pad.map[playerNum][1]/* B */, true); + pad.wasKeyStick[playerNum] = true; + } else if (pad.wasKeyStick[playerNum]){ + handle_key(playerNum, pad.map[playerNum][0], false); + handle_key(playerNum, pad.map[playerNum][1], false); + pad.wasKeyStick[playerNum] = false; + } + } else { + if (RS_Y > 0.25) { + GL2JNIView.rt[playerNum] = (int) (RS_Y * 255); + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + } else if (RS_Y < 0.25) { + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + GL2JNIView.lt[playerNum] = (int) (-(RS_Y) * 255); + } + } + + } + mView.pushInput(); + if (!pad.joystick[playerNum] && (pad.globalLS_X[playerNum] == pad.previousLS_X[playerNum] && pad.globalLS_Y[playerNum] == pad.previousLS_Y[playerNum]) + || (pad.previousLS_X[playerNum] == 0.0f && pad.previousLS_Y[playerNum] == 0.0f)) + // Only handle Left Stick on an Xbox 360 controller if there was + // some actual motion on the stick, + // so otherwise the event can be handled as a DPAD event + return false; + else + return true; + + } else { + return false; + } + } + + @Override + public boolean onGenericMotionEvent(MotionEvent event) { + // Log.w("INPUT", event.toString() + " " + event.getSource()); + // Get all the axis for the KeyEvent + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD + && event.getSource() != Gamepad.Xperia_Touchpad) { + + Integer playerNum = Arrays.asList(pad.name).indexOf(event.getDeviceId()); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && playerNum == -1) { + playerNum = pad.deviceDescriptor_PlayerNum + .get(pad.deviceId_deviceDescriptor.get(event.getDeviceId())); + } else { + playerNum = -1; + } + if (playerNum == null || playerNum == -1) { + return false; + } + if (!pad.compat[playerNum]) { + + // Joystick + if ((event.getSource() & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) { + + // do other things with joystick + float LS_X = event.getAxisValue(OuyaController.AXIS_LS_X); + float LS_Y = event.getAxisValue(OuyaController.AXIS_LS_Y); + float RS_X = event.getAxisValue(OuyaController.AXIS_RS_X); + float RS_Y = event.getAxisValue(OuyaController.AXIS_RS_Y); + float L2 = event.getAxisValue(OuyaController.AXIS_L2); + float R2 = event.getAxisValue(OuyaController.AXIS_R2); + + if (!pad.joystick[playerNum]) { + pad.previousLS_X[playerNum] = pad.globalLS_X[playerNum]; + pad.previousLS_Y[playerNum] = pad.globalLS_Y[playerNum]; + pad.globalLS_X[playerNum] = LS_X; + pad.globalLS_Y[playerNum] = LS_Y; + } + + GL2JNIView.jx[playerNum] = (int) (LS_X * 126); + GL2JNIView.jy[playerNum] = (int) (LS_Y * 126); + + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + + if (prefs.getBoolean(Gamepad.pref_js_rbuttons + pad.portId[playerNum], true)) { + if (RS_Y > 0.25) { + handle_key(playerNum, pad.map[playerNum][0]/* A */, true); + pad.wasKeyStick[playerNum] = true; + } else if (RS_Y < 0.25) { + handle_key(playerNum, pad.map[playerNum][1]/* B */, true); + pad.wasKeyStick[playerNum] = true; + } else if (pad.wasKeyStick[playerNum]){ + handle_key(playerNum, pad.map[playerNum][0], false); + handle_key(playerNum, pad.map[playerNum][1], false); + pad.wasKeyStick[playerNum] = false; + } + } else { + if (RS_Y > 0.25) { + GL2JNIView.rt[playerNum] = (int) (RS_Y * 255); + GL2JNIView.lt[playerNum] = (int) (L2 * 255); + } else if (RS_Y < 0.25) { + GL2JNIView.rt[playerNum] = (int) (R2 * 255); + GL2JNIView.lt[playerNum] = (int) (-(RS_Y) * 255); + } + } + } + } + mView.pushInput(); + if (!pad.joystick[playerNum] && (pad.globalLS_X[playerNum] == pad.previousLS_X[playerNum] && pad.globalLS_Y[playerNum] == pad.previousLS_Y[playerNum]) + || (pad.previousLS_X[playerNum] == 0.0f && pad.previousLS_Y[playerNum] == 0.0f)) + // Only handle Left Stick on an Xbox 360 controller if there was + // some actual motion on the stick, + // so otherwise the event can be handled as a DPAD event + return false; + else + return true; + } + return false; + + } + + public boolean handle_key(Integer playerNum, int kc, boolean down) { + if (playerNum == null || playerNum == -1) + return false; + if (kc == pad.getSelectButtonCode()) { + return false; + } + if (pad.isActiveMoga[playerNum]) { + return false; + } + + boolean rav = false; + for (int i = 0; i < pad.map[playerNum].length; i += 2) { + if (pad.map[playerNum][i + 0] == kc) { + if (down) + GL2JNIView.kcode_raw[playerNum] &= ~pad.map[playerNum][i + 1]; + else + GL2JNIView.kcode_raw[playerNum] |= pad.map[playerNum][i + 1]; + rav = true; + break; + } + } + mView.pushInput(); + return rav; + } + + public boolean onKeyUp(int keyCode, KeyEvent event) { + if (keyCode == KeyEvent.KEYCODE_VOLUME_UP || keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) { + return super.onKeyUp(keyCode, event); + } + return true; + } + + public boolean onKeyDown(int keyCode, KeyEvent event) { + if (keyCode == pad.getSelectButtonCode()) { + return showMenu(); + } + if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.GINGERBREAD_MR1 + || (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH + && ViewConfiguration.get(this).hasPermanentMenuKey())) { + if (keyCode == KeyEvent.KEYCODE_MENU) { + return showMenu(); + } + } + if (keyCode == KeyEvent.KEYCODE_BACK) { + if (pad.isXperiaPlay) { + return true; + } else { + return showMenu(); + } + } + if (keyCode == KeyEvent.KEYCODE_VOLUME_UP || keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) { + return super.onKeyDown(keyCode, event); + } + return true; + } + + public boolean OnNativeKeyPress(int device, int keyCode, int action, int metaState) { + Integer playerNum = pad.playerNumX.get(device); + if (playerNum != null && playerNum != -1) { + String id = pad.portId[playerNum]; + if (action == KeyEvent.ACTION_DOWN) { + if (keyCode == prefs.getInt(Gamepad.pref_button_l + id, KeyEvent.KEYCODE_BUTTON_L1)) { + return simulatedTouchEvent(playerNum, 1.0f, 0.0f); + } else if (keyCode == prefs.getInt(Gamepad.pref_button_r + id, KeyEvent.KEYCODE_BUTTON_R1)) { + return simulatedTouchEvent(playerNum, 0.0f, 1.0f); + } else if (handle_key(playerNum, keyCode, true)) { + if (playerNum == 0) + JNIdc.hide_osd(); + return true; + } + } + if (action == KeyEvent.ACTION_UP) { + if (keyCode == prefs.getInt(Gamepad.pref_button_l + id, + KeyEvent.KEYCODE_BUTTON_L1) + || keyCode == prefs.getInt(Gamepad.pref_button_r + id, + KeyEvent.KEYCODE_BUTTON_R1)) { + return simulatedTouchEvent(playerNum, 0.0f, 0.0f); + } else { + return handle_key(playerNum, keyCode, false); + } + } + } + return false; + } + +// public boolean OnNativeMotion(int device, int source, int action, int x, +// int y, boolean newEvent) { + public boolean OnNativeMotion(int device, int source, int action, int x, + int y) { + Integer playerNum = pad.playerNumX.get(device); + if (playerNum != null && playerNum != -1) { + Log.d("reicast", playerNum + " - " + device + ": " + source); +// if (newEvent && source == Gamepad.Xperia_Touchpad) { + if (source == Gamepad.Xperia_Touchpad) { + if (action == MotionEvent.ACTION_UP) { + x = 0; + y = 0; + } + // Sensitive! Zero out the touchpad release + if (x > 360 && x < 500) { + x = 360; + } else if (x > 500 && x < 640) { + x = 640; + } + if (x >= 640) { + x = x - 640; + } + y = 366 - y; + // Right stick is an extension of left stick + // 360 to 640 is the live gap between sticks + // The y-axis is inverted from normal layout + // Imagine it as a small MacBook touch mouse + + GL2JNIView.jx[playerNum] = (int) (x * 126); + GL2JNIView.jy[playerNum] = (int) (y * 126); + mView.pushInput(); + return true; + } + } + return false; + } + + public GL2JNIView getGameView() { + return mView; + } + + public void screenGrab() { + mView.screenGrab(); + } + + private boolean showMenu() { + if (popUp != null) { + if (!menu.dismissPopUps()) { + if (!popUp.isShowing()) { + displayPopUp(popUp); + } else { + popUp.dismiss(); + } + } else { + popUp.dismiss(); + } + } + return true; + } + + @Override + protected void onPause() { + super.onPause(); + mView.onPause(); + moga.onPause(); + } + + @Override + protected void onDestroy() { + super.onDestroy(); + moga.onDestroy(); + } + + @Override + protected void onStop() { + JNIdc.stop(); + mView.onStop(); + super.onStop(); + } + + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + } + + @Override + protected void onResume() { + super.onResume(); + mView.onResume(); + moga.onResume(); + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/MainActivity.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/MainActivity.java new file mode 100644 index 000000000..7e54d691c --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/MainActivity.java @@ -0,0 +1,650 @@ +package com.reicast.emulator; + +import java.io.File; +import java.lang.Thread.UncaughtExceptionHandler; +import java.util.List; + +import android.annotation.SuppressLint; +import android.app.AlertDialog; +import android.content.Context; +import android.content.DialogInterface; +import android.content.Intent; +import android.content.SharedPreferences; +import android.content.pm.PackageManager; +import android.content.pm.ResolveInfo; +import android.content.res.Configuration; +import android.net.Uri; +import android.os.Build; +import android.os.Bundle; +import android.os.Environment; +import android.preference.PreferenceManager; +import android.support.v4.app.ActionBarDrawerToggle; +import android.support.v4.app.Fragment; +import android.support.v4.app.FragmentActivity; +import android.support.v4.widget.DrawerLayout; +import android.util.DisplayMetrics; +import android.util.Log; +import android.view.Gravity; +import android.view.KeyEvent; +import android.view.LayoutInflater; +import android.view.MotionEvent; +import android.view.View; +import android.view.View.OnClickListener; +import android.view.View.OnSystemUiVisibilityChangeListener; +import android.view.View.OnTouchListener; +import android.view.WindowManager; +import android.widget.ImageView; +import android.widget.TextView; +import android.widget.Toast; + +import com.reicast.emulator.config.Config; +import com.reicast.emulator.config.InputFragment; +import com.reicast.emulator.config.OptionsFragment; +import com.reicast.emulator.debug.GenerateLogs; +import com.reicast.emulator.emu.JNIdc; +import com.reicast.emulator.periph.Gamepad; + +public class MainActivity extends FragmentActivity implements + FileBrowser.OnItemSelectedListener, OptionsFragment.OnClickListener { + + private DrawerLayout mDrawerLayout; + private ActionBarDrawerToggle mDrawerToggle; + + private SharedPreferences mPrefs; + private static File sdcard = Environment.getExternalStorageDirectory(); + public static String home_directory = sdcard.getAbsolutePath(); + + private TextView menuHeading; + private boolean hasAndroidMarket = false; + + private UncaughtExceptionHandler mUEHandler; + + Gamepad pad = new Gamepad(); + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.mainuilayout_fragment); + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + getWindow().getDecorView().setOnSystemUiVisibilityChangeListener (new OnSystemUiVisibilityChangeListener() { + public void onSystemUiVisibilityChange(int visibility) { + if ((visibility & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0) { + getWindow().getDecorView().setSystemUiVisibility( +// View.SYSTEM_UI_FLAG_LAYOUT_STABLE | + View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION + | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN + | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION + | View.SYSTEM_UI_FLAG_FULLSCREEN + | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY); + } + } + }); + } else { + getWindow().setFlags (WindowManager.LayoutParams.FLAG_FULLSCREEN, + WindowManager.LayoutParams.FLAG_FULLSCREEN); + } + + mPrefs = PreferenceManager.getDefaultSharedPreferences(this); + + String prior_error = mPrefs.getString("prior_error", null); + if (prior_error != null) { + displayLogOutput(prior_error); + mPrefs.edit().remove("prior_error").commit(); + } else { + mUEHandler = new Thread.UncaughtExceptionHandler() { + public void uncaughtException(Thread t, Throwable error) { + if (error != null) { + StringBuilder output = new StringBuilder(); + for (StackTraceElement trace : error.getStackTrace()) { + output.append(trace.toString() + "\n"); + } + mPrefs.edit().putString("prior_error", output.toString()).commit(); + error.printStackTrace(); + android.os.Process.killProcess(android.os.Process.myPid()); + System.exit(0); + } + } + }; + Thread.setDefaultUncaughtExceptionHandler(mUEHandler); + } + + home_directory = mPrefs.getString("home_directory", home_directory); + + Intent market = new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=dummy")); + if (isCallable(market)) { + hasAndroidMarket = true; + } + + if (!getFilesDir().exists()) { + getFilesDir().mkdir(); + } + JNIdc.config(home_directory); + + // When viewing a resource, pass its URI to the native code for opening + Intent intent = getIntent(); + if (intent.getAction() != null) { + if (intent.getAction().equals(Intent.ACTION_VIEW)) { + onGameSelected(Uri.parse(intent.getData().toString())); + // Flush the intent to prevent multiple calls + getIntent().setData(null); + setIntent(null); + Config.externalIntent = true; + } + } + + // Check that the activity is using the layout version with + // the fragment_container FrameLayout + if (findViewById(R.id.fragment_container) != null) { + + // However, if we're being restored from a previous state, + // then we don't need to do anything and should return or else + // we could end up with overlapping fragments. + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB_MR1) { + if (savedInstanceState != null) { + return; + } + } + + // Create a new Fragment to be placed in the activity layout + FileBrowser firstFragment = new FileBrowser(); + Bundle args = new Bundle(); + args.putBoolean("ImgBrowse", true); + args.putString("browse_entry", null); + // specify a path for selecting folder options + args.putBoolean("games_entry", false); + // specify if the desired path is for games or data + firstFragment.setArguments(args); + // In case this activity was started with special instructions from + // an + // Intent, pass the Intent's extras to the fragment as arguments + // firstFragment.setArguments(getIntent().getExtras()); + + // Add the fragment to the 'fragment_container' FrameLayout + getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, firstFragment, + "MAIN_BROWSER").commit(); + } + + menuHeading = (TextView) findViewById(R.id.menu_heading); + + mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); + mDrawerToggle = new ActionBarDrawerToggle( + MainActivity.this, /* host Activity */ + mDrawerLayout, /* DrawerLayout object */ + R.drawable.ic_drawer, /* nav drawer icon to replace 'Up' caret */ + R.string.drawer_open, /* "open drawer" description */ + R.string.drawer_shut /* "close drawer" description */ + ) { + /** Called when a drawer has settled in a completely closed state. */ + public void onDrawerClosed(View view) { + super.onDrawerClosed(view); + } + + /** Called when a drawer has settled in a completely open state. */ + public void onDrawerOpened(View drawerView) { + super.onDrawerOpened(drawerView); + findViewById(R.id.browser_menu).setOnClickListener(new OnClickListener() { + public void onClick(View view) { + FileBrowser browseFrag = (FileBrowser) getSupportFragmentManager() + .findFragmentByTag("MAIN_BROWSER"); + if (browseFrag != null) { + if (browseFrag.isVisible()) { + return; + } + } + browseFrag = new FileBrowser(); + Bundle args = new Bundle(); + args.putBoolean("ImgBrowse", true); + args.putString("browse_entry", null); + // specify a path for selecting folder options + args.putBoolean("games_entry", false); + // specify if the desired path is for games or data + browseFrag.setArguments(args); + getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, browseFrag, + "MAIN_BROWSER").addToBackStack(null) + .commit(); + setTitle(R.string.browser); + toggleDrawer(true); + } + + }); + + findViewById(R.id.settings_menu).setOnClickListener( + new OnClickListener() { + public void onClick(View view) { + OptionsFragment optionsFrag = (OptionsFragment) getSupportFragmentManager() + .findFragmentByTag("OPTIONS_FRAG"); + if (optionsFrag != null) { + if (optionsFrag.isVisible()) { + return; + } + } + optionsFrag = new OptionsFragment(); + getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, + optionsFrag, "OPTIONS_FRAG") + .addToBackStack(null).commit(); + setTitle(R.string.settings); + toggleDrawer(true); + } + + }); + + findViewById(R.id.input_menu).setOnClickListener(new OnClickListener() { + public void onClick(View view) { + InputFragment inputFrag = (InputFragment) getSupportFragmentManager() + .findFragmentByTag("INPUT_FRAG"); + if (inputFrag != null) { + if (inputFrag.isVisible()) { + return; + } + } + inputFrag = new InputFragment(); + getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, inputFrag, + "INPUT_FRAG").addToBackStack(null).commit(); + setTitle(R.string.input); + toggleDrawer(true); + } + + }); + + findViewById(R.id.about_menu).setOnClickListener(new OnClickListener() { + public void onClick(View view) { + AboutFragment aboutFrag = (AboutFragment) getSupportFragmentManager() + .findFragmentByTag("ABOUT_FRAG"); + if (aboutFrag != null) { + if (aboutFrag.isVisible()) { + return; + } + } + aboutFrag = new AboutFragment(); + getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, aboutFrag, + "ABOUT_FRAG").addToBackStack(null).commit(); + setTitle(R.string.about); + toggleDrawer(true); + } + + }); + + findViewById(R.id.cloud_menu).setOnClickListener(new OnClickListener() { + public void onClick(View view) { + CloudFragment cloudFrag = (CloudFragment) getSupportFragmentManager() + .findFragmentByTag("CLOUD_FRAG"); + if (cloudFrag != null) { + if (cloudFrag.isVisible()) { + return; + } + } + cloudFrag = new CloudFragment(); + getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, + cloudFrag, "CLOUD_FRAG") + .addToBackStack(null).commit(); + setTitle(R.string.cloud); + toggleDrawer(true); + } + + }); + + View rateMe = findViewById(R.id.rateme_menu); + if (!hasAndroidMarket) { + rateMe.setVisibility(View.GONE); + } else { + rateMe.setOnTouchListener(new OnTouchListener() { + public boolean onTouch(View v, MotionEvent event) { + if (event.getActionMasked() == MotionEvent.ACTION_DOWN) { + // vib.vibrate(50); + startActivity(new Intent(Intent.ACTION_VIEW, Uri + .parse("market://details?id=" + getPackageName()))); + //setTitle(R.string.rateme); + toggleDrawer(true); + return true; + } else + return false; + } + }); + } + + findViewById(R.id.message_menu).setOnClickListener(new OnClickListener() { + public void onClick(View view) { + generateErrorLog(); + } + }); + } + }; + + // Set the drawer toggle as the DrawerListener + mDrawerLayout.setDrawerListener(mDrawerToggle); + + findViewById(R.id.header_list).setOnTouchListener(new OnTouchListener() { + public boolean onTouch(View v, MotionEvent event) { + if (event.getActionMasked() == MotionEvent.ACTION_DOWN) { + toggleDrawer(false); + return true; + } else + return false; + } + }); + } + + public void toggleDrawer(boolean close) { + if (mDrawerLayout.isDrawerOpen(Gravity.LEFT)) { + mDrawerLayout.closeDrawer(Gravity.LEFT); + } else if (!close) { + mDrawerLayout.openDrawer(Gravity.LEFT); + } + } + + public void generateErrorLog() { + new GenerateLogs(MainActivity.this).execute(getFilesDir().getAbsolutePath()); + } + + /** + * Display a dialog to notify the user of prior crash + * + * @param string + * A generalized summary of the crash cause + * @param bundle + * The savedInstanceState passed from onCreate + */ + private void displayLogOutput(final String error) { + AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this); + builder.setTitle(R.string.report_issue); + builder.setMessage(error); + builder.setPositiveButton(R.string.report, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + generateErrorLog(); + } + }); + builder.setNegativeButton(R.string.dismiss, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + dialog.dismiss(); + } + }); + builder.create(); + builder.show(); + } + + public static boolean isBiosExisting(Context context) { + SharedPreferences mPrefs = PreferenceManager.getDefaultSharedPreferences(context); + home_directory = mPrefs.getString("home_directory", home_directory); + File bios = new File(home_directory, "data/dc_boot.bin"); + return bios.exists(); + } + + public static boolean isFlashExisting(Context context) { + SharedPreferences mPrefs = PreferenceManager.getDefaultSharedPreferences(context); + home_directory = mPrefs.getString("home_directory", home_directory); + File flash = new File(home_directory, "data/dc_flash.bin"); + return flash.exists(); + } + + public void onGameSelected(Uri uri) { + if (Config.readOutput("uname -a").equals(getString(R.string.error_kernel))) { + MainActivity.showToastMessage(MainActivity.this, getString(R.string.unsupported), R.drawable.ic_notification, Toast.LENGTH_SHORT); + } + String msg = null; + if (!isBiosExisting(MainActivity.this)) + msg = getString(R.string.missing_bios, home_directory); + else if (!isFlashExisting(MainActivity.this)) + msg = getString(R.string.missing_flash, home_directory); + + if (msg != null) { + launchBIOSdetection(); + } else { + Config.nativeact = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getBoolean(Config.pref_nativeact, Config.nativeact); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && Config.nativeact) { + startActivity(new Intent("com.reicast.EMULATOR", uri, getApplicationContext(), + GL2JNINative.class)); + } else { + startActivity(new Intent("com.reicast.EMULATOR", uri, getApplicationContext(), + GL2JNIActivity.class)); + } + } + } + + private void launchBIOSdetection() { + AlertDialog.Builder builder = new AlertDialog.Builder(this); + builder.setTitle(R.string.bios_selection); + builder.setPositiveButton(R.string.browse, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + FileBrowser firstFragment = new FileBrowser(); + Bundle args = new Bundle(); + // args.putBoolean("ImgBrowse", false); + // specify ImgBrowse option. true = images, + // false = folders only + args.putString("browse_entry", sdcard.toString()); + // specify a path for selecting folder + // options + args.putBoolean("games_entry", false); + // selecting a BIOS folder, so this is not + // games + + firstFragment.setArguments(args); + // In case this activity was started with + // special instructions from + // an Intent, pass the Intent's extras to + // the fragment as arguments + // firstFragment.setArguments(getIntent().getExtras()); + + // Add the fragment to the + // 'fragment_container' FrameLayout + getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, + firstFragment, + "MAIN_BROWSER") + .addToBackStack(null).commit(); + } + }); + builder.setNegativeButton(R.string.gdrive, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + Toast.makeText(MainActivity.this, R.string.require_bios, Toast.LENGTH_SHORT).show(); + } + }); + builder.create(); + builder.show(); + } + + public void onFolderSelected(Uri uri) { + FileBrowser browserFrag = (FileBrowser) getSupportFragmentManager() + .findFragmentByTag("MAIN_BROWSER"); + if (browserFrag != null) { + if (browserFrag.isVisible()) { + Log.d("reicast", "Main folder: " + uri.toString()); + // return; + } + } + + OptionsFragment optsFrag = new OptionsFragment(); + getSupportFragmentManager().beginTransaction() + .replace(R.id.fragment_container, optsFrag, "OPTIONS_FRAG") + .commit(); + return; + } + + public void onMainBrowseSelected(String path_entry, boolean games) { + FileBrowser firstFragment = new FileBrowser(); + Bundle args = new Bundle(); + args.putBoolean("ImgBrowse", false); + // specify ImgBrowse option. true = images, false = folders only + args.putString("browse_entry", path_entry); + // specify a path for selecting folder options + args.putBoolean("games_entry", games); + // specify if the desired path is for games or data + + firstFragment.setArguments(args); + // In case this activity was started with special instructions from + // an Intent, pass the Intent's extras to the fragment as arguments + // firstFragment.setArguments(getIntent().getExtras()); + + // Add the fragment to the 'fragment_container' FrameLayout + getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, firstFragment, "MAIN_BROWSER") + .addToBackStack(null).commit(); + } + + @SuppressLint("NewApi") + @Override + public void setTitle(CharSequence title) { + menuHeading.setText(title); + } + + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + mDrawerToggle.onConfigurationChanged(newConfig); + } + + @Override + public boolean onKeyDown(int keyCode, KeyEvent event) { + if (keyCode == KeyEvent.KEYCODE_BACK) { + Fragment fragment = (FileBrowser) getSupportFragmentManager() + .findFragmentByTag("MAIN_BROWSER"); + if (fragment != null && fragment.isVisible()) { + boolean readyToQuit = true; + if (fragment.getArguments() != null) { + readyToQuit = fragment.getArguments().getBoolean( + "ImgBrowse", true); + } + if (readyToQuit) { + MainActivity.this.finish(); + } else { + launchMainFragment(fragment); + } + return true; + } else { + launchMainFragment(fragment); + return true; + } + + } + if (keyCode == KeyEvent.KEYCODE_MENU) { + toggleDrawer(false); + } + + return super.onKeyDown(keyCode, event); + } + + private void launchMainFragment(Fragment fragment) { + fragment = new FileBrowser(); + Bundle args = new Bundle(); + args.putBoolean("ImgBrowse", true); + args.putString("browse_entry", null); + args.putBoolean("games_entry", false); + fragment.setArguments(args); + getSupportFragmentManager().beginTransaction() + .replace(R.id.fragment_container, fragment, "MAIN_BROWSER") + .addToBackStack(null).commit(); + setTitle(R.string.browser); + } + + @Override + protected void onPause() { + super.onPause(); + InputFragment fragment = (InputFragment) getSupportFragmentManager() + .findFragmentByTag("INPUT_FRAG"); + if (fragment != null && fragment.isVisible()) { + if (fragment.moga != null) { + fragment.moga.onPause(); + } + } + } + + @Override + protected void onDestroy() { + InputFragment fragment = (InputFragment) getSupportFragmentManager() + .findFragmentByTag("INPUT_FRAG"); + if (fragment != null && fragment.isVisible()) { + if (fragment.moga != null) { + fragment.moga.onDestroy(); + } + } + super.onDestroy(); + } + + @Override + protected void onResume() { + super.onResume(); + InputFragment fragment = (InputFragment) getSupportFragmentManager() + .findFragmentByTag("INPUT_FRAG"); + if (fragment != null && fragment.isVisible()) { + if (fragment.moga != null) { + fragment.moga.onResume(); + } + } + + CloudFragment cloudfragment = (CloudFragment) getSupportFragmentManager() + .findFragmentByTag("CLOUD_FRAG"); + if (cloudfragment != null && cloudfragment.isVisible()) { + if (cloudfragment != null) { + cloudfragment.onResume(); + } + } + } + + @Override + public void onPostCreate(Bundle savedInstanceState) { + super.onPostCreate(savedInstanceState); + mDrawerToggle.syncState(); + } + + @Override + public void onWindowFocusChanged(boolean hasFocus) { + super.onWindowFocusChanged(hasFocus); + if (hasFocus && Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + getWindow().getDecorView().setSystemUiVisibility( + View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION + | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN + | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION + | View.SYSTEM_UI_FLAG_FULLSCREEN + | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY); + } + } + + public boolean isCallable(Intent intent) { + List list = getPackageManager().queryIntentActivities( + intent, PackageManager.MATCH_DEFAULT_ONLY); + return list.size() > 0; + } + + public static void showToastMessage(Context context, String message, + int resource, int duration) { + LayoutInflater inflater = (LayoutInflater) context + .getSystemService(Context.LAYOUT_INFLATER_SERVICE); + View layout = inflater.inflate(R.layout.toast_layout, null); + + ImageView image = (ImageView) layout.findViewById(R.id.image); + image.setImageResource(resource); + + TextView text = (TextView) layout.findViewById(R.id.text); + text.setText(message); + + DisplayMetrics metrics = new DisplayMetrics(); + WindowManager winman = (WindowManager) context + .getSystemService(Context.WINDOW_SERVICE); + winman.getDefaultDisplay().getMetrics(metrics); + + Toast toast = new Toast(context); + toast.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, + (int) (72 * metrics.density + 0.5f)); + toast.setDuration(duration); + toast.setView(layout); + toast.show(); + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/XMLParser.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/XMLParser.java new file mode 100644 index 000000000..74817a031 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/XMLParser.java @@ -0,0 +1,340 @@ +package com.reicast.emulator; + +import java.io.BufferedInputStream; +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.io.StringReader; +import java.io.UnsupportedEncodingException; +import java.net.URL; +import java.net.URLConnection; +import java.net.URLEncoder; +import java.util.Locale; + +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; + +import org.apache.http.HttpEntity; +import org.apache.http.HttpResponse; +import org.apache.http.client.ClientProtocolException; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.impl.client.DefaultHttpClient; +import org.apache.http.util.EntityUtils; +import org.w3c.dom.Document; +import org.w3c.dom.Element; +import org.w3c.dom.Node; +import org.w3c.dom.NodeList; +import org.xml.sax.InputSource; +import org.xml.sax.SAXException; + +import android.app.AlertDialog; +import android.content.Context; +import android.content.DialogInterface; +import android.content.SharedPreferences; +import android.graphics.Bitmap; +import android.graphics.BitmapFactory; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.Drawable; +import android.net.ConnectivityManager; +import android.net.NetworkInfo; +import android.net.Uri; +import android.os.AsyncTask; +import android.os.Build; +import android.os.StrictMode; +import android.os.Vibrator; +import android.view.View; +import android.view.View.OnLongClickListener; +import android.widget.ImageView; +import android.widget.TextView; + +import com.reicast.emulator.FileBrowser.OnItemSelectedListener; +import com.reicast.emulator.config.Config; + +public class XMLParser extends AsyncTask { + + private SharedPreferences mPrefs; + private File game; + private int index; + private View childview; + private OnItemSelectedListener mCallback; + private Context mContext; + private String game_name; + private Bitmap coverart; + private Drawable game_icon; + private String gameId; + private String game_details; + + private static final String game_index = "http://thegamesdb.net/api/GetGamesList.php?platform=sega+dreamcast&name="; + private static final String game_id = "http://thegamesdb.net/api/GetGame.php?platform=sega+dreamcast&id="; + + public XMLParser(File game, int index, SharedPreferences mPrefs) { + this.mPrefs = mPrefs; + this.game = game; + this.index = index; + } + + public void setViewParent(Context mContext, View childview, OnItemSelectedListener mCallback) { + this.mContext = mContext; + this.childview = childview; + this.mCallback = mCallback; + } + + public void setGameID(String id) { + this.gameId = id; + initializeDefaults(); + } + + protected void onPreExecute() { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { + StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder() + .permitAll().build(); + StrictMode.setThreadPolicy(policy); + } + } + + public Bitmap decodeBitmapIcon(String filename) throws IOException { + String index = filename.substring(filename.lastIndexOf("/") + 1, filename.lastIndexOf(".")); + File file = new File(mContext.getExternalFilesDir(null) + "/images", index + ".png"); + if (file.exists()) { + return BitmapFactory.decodeFile(file.getAbsolutePath()); + } else { + URL updateURL = new URL(filename); + URLConnection conn1 = updateURL.openConnection(); + InputStream im = conn1.getInputStream(); + BufferedInputStream bis = new BufferedInputStream(im, 512); + BitmapFactory.Options options = new BitmapFactory.Options(); + options.inJustDecodeBounds = true; + Bitmap bitmap = BitmapFactory.decodeStream(bis, null, options); + int heightRatio = (int) Math.ceil(options.outHeight / (float) 72); + int widthRatio = (int) Math.ceil(options.outWidth / (float) 72); + if (heightRatio > 1 || widthRatio > 1) { + if (heightRatio > widthRatio) { + options.inSampleSize = heightRatio; + } else { + options.inSampleSize = widthRatio; + } + } + options.inJustDecodeBounds = false; + bis.close(); + im.close(); + conn1 = updateURL.openConnection(); + im = conn1.getInputStream(); + bis = new BufferedInputStream(im, 512); + bitmap = BitmapFactory.decodeStream(bis, null, options); + bis.close(); + im.close(); + bis = null; + im = null; + OutputStream fOut = null; + if (!file.getParentFile().exists()) { + file.getParentFile().mkdir(); + } + try { + fOut = new FileOutputStream(file, false); + bitmap.compress(Bitmap.CompressFormat.PNG, 100, fOut); + fOut.flush(); + fOut.close(); + } catch (Exception ex) { + + } + return bitmap; + } + } + + @Override + protected String doInBackground(String... params) { + String filename = game_name = params[0]; + if (isNetworkAvailable() && mPrefs.getBoolean(Config.pref_gamedetails, false)) { + DefaultHttpClient httpClient = new DefaultHttpClient(); + HttpPost httpPost; + if (gameId != null) { + httpPost = new HttpPost(game_id + gameId); + } else { + filename = filename.substring(0, filename.lastIndexOf(".")); + try { + filename = URLEncoder.encode(filename, "UTF-8"); + } catch (UnsupportedEncodingException e) { + filename = filename.replace(" ", "+"); + } + httpPost = new HttpPost(game_index + filename); + } + try { + HttpResponse httpResponse = httpClient.execute(httpPost); + HttpEntity httpEntity = httpResponse.getEntity(); + return EntityUtils.toString(httpEntity); + } catch (UnsupportedEncodingException e) { + + } catch (ClientProtocolException e) { + + } catch (IOException e) { + + } + } + return null; + } + + @Override + protected void onPostExecute(String gameData) { + if (gameData != null) { + try { + Document doc = getDomElement(gameData); + if (doc.getElementsByTagName("Game") != null) { + Element root = (Element) doc.getElementsByTagName("Game").item(0); + if (gameId == null) { + XMLParser xmlParser = new XMLParser(game, index, mPrefs); + xmlParser.setViewParent(mContext, childview, mCallback); + xmlParser.setGameID(getValue(root, "id")); + xmlParser.execute(game_name); + } else { + game_name = getValue(root, "GameTitle"); + game_details = getValue(root, "Overview"); + Element images = (Element) root.getElementsByTagName("Images").item(0); + Element boxart = null; + if (images.getElementsByTagName("boxart").getLength() > 1) { + boxart = (Element) images.getElementsByTagName("boxart").item(1); + } else if (images.getElementsByTagName("boxart").getLength() == 1) { + boxart = (Element) images.getElementsByTagName("boxart").item(0); + } + if (boxart != null) { + coverart = decodeBitmapIcon("http://thegamesdb.net/banners/" + getElementValue(boxart)); + game_icon = new BitmapDrawable(coverart); + } + } + } + } catch (Exception e) { + + } + } + + ((TextView) childview.findViewById(R.id.item_name)).setText(game_name); + + if (Build.VERSION.SDK_INT < 21) { + ((ImageView) childview.findViewById(R.id.item_icon)).setImageDrawable(game_icon); + } else { + ((ImageView) childview.findViewById(R.id.item_icon)).setImageBitmap(coverart); + } + + if (mPrefs.getBoolean(Config.pref_gamedetails, false)) { + childview.findViewById(R.id.childview).setOnLongClickListener( + new OnLongClickListener() { + public boolean onLongClick(View view) { + final AlertDialog.Builder builder = new AlertDialog.Builder(mContext); + builder.setCancelable(true); + builder.setTitle(mContext.getString(R.string.game_details, game_name)); + builder.setMessage(game_details); + builder.setIcon(game_icon); + builder.setNegativeButton("Close", + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + dialog.dismiss(); + return; + } + }); + builder.setPositiveButton("Launch", + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + dialog.dismiss(); + mCallback.onGameSelected(game != null ? Uri.fromFile(game) : Uri.EMPTY); + ((Vibrator) mContext.getSystemService(Context.VIBRATOR_SERVICE)).vibrate(250); + return; + } + }); + builder.create().show(); + return true; + } + }); + } + + childview.setTag(game_name); + } + + private void initializeDefaults() { + game_details = mContext.getString(R.string.info_unavailable); + final String nameLower = game.getName().toLowerCase( + Locale.getDefault()); + if (Build.VERSION.SDK_INT < 21) { + game_icon = mContext.getResources().getDrawable( + game.isDirectory() ? R.drawable.open_folder : nameLower + .endsWith(".gdi") ? R.drawable.gdi : nameLower + .endsWith(".chd") ? R.drawable.chd + : R.drawable.disk_unknown); + } + } + + public boolean isNetworkAvailable() { + ConnectivityManager connectivityManager = (ConnectivityManager) mContext + .getSystemService(Context.CONNECTIVITY_SERVICE); + NetworkInfo mWifi = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI); + NetworkInfo mMobile = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE); + NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); + if (mMobile != null && mWifi != null) { + return mMobile.isAvailable() || mWifi.isAvailable(); + } else { + return activeNetworkInfo != null && activeNetworkInfo.isConnected(); + } + } + + public Drawable getGameIcon() { + return game_icon; + } + + public Bitmap getGameCover() { + return coverart; + } + + public String getGameTitle() { + return game_name; + } + + public String getGameDetails() { + return game_details; + } + + public Document getDomElement(String xml) { + Document doc = null; + DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); + try { + + DocumentBuilder db = dbf.newDocumentBuilder(); + + InputSource is = new InputSource(); + is.setCharacterStream(new StringReader(xml)); + doc = db.parse(is); + + } catch (ParserConfigurationException e) { + + return null; + } catch (SAXException e) { + + return null; + } catch (IOException e) { + + return null; + } + + return doc; + } + + public String getValue(Element item, String str) { + NodeList n = item.getElementsByTagName(str); + return this.getElementValue(n.item(0)); + } + + public final String getElementValue(Node elem) { + Node child; + if (elem != null) { + if (elem.hasChildNodes()) { + for (child = elem.getFirstChild(); child != null; child = child + .getNextSibling()) { + if (child.getNodeType() == Node.TEXT_NODE) { + return child.getNodeValue(); + } + } + } + } + return ""; + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/config/Config.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/Config.java new file mode 100644 index 000000000..76c21ac0a --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/Config.java @@ -0,0 +1,152 @@ +package com.reicast.emulator.config; + +import java.io.BufferedReader; +import java.io.InputStream; +import java.io.InputStreamReader; + +import android.content.Context; +import android.content.SharedPreferences; +import android.preference.PreferenceManager; + +import com.android.util.DreamTime; +import com.reicast.emulator.emu.JNIdc; + +public class Config { + + public static final String pref_home = "home_directory"; + public static final String pref_games = "game_directory"; + public static final String pref_theme = "button_theme"; + + public static final String pref_gamedetails = "game_details"; + public static final String pref_nativeact = "enable_native"; + public static final String pref_dynarecopt = "dynarec_opt"; + public static final String pref_unstable = "unstable_opt"; + public static final String pref_cable = "dc_cable"; + public static final String pref_dcregion = "dc_region"; + public static final String pref_broadcast = "dc_broadcast"; + public static final String pref_limitfps = "limit_fps"; + public static final String pref_nosound = "sound_disabled"; + public static final String pref_mipmaps = "use_mipmaps"; + public static final String pref_widescreen = "stretch_view"; + public static final String pref_frameskip = "frame_skip"; + public static final String pref_pvrrender = "pvr_render"; + public static final String pref_syncedrender = "synced_render"; + public static final String pref_cheatdisk = "cheat_disk"; + public static final String pref_usereios = "use_reios"; + + public static final String pref_showfps = "show_fps"; + public static final String pref_forcegpu = "force_gpu"; + public static final String pref_rendertype = "render_type"; + public static final String pref_renderdepth = "depth_render"; + + public static final String pref_touchvibe = "touch_vibration_enabled"; + public static final String pref_vibrationDuration = "vibration_duration"; + public static final String pref_mic = "mic_plugged_in"; + public static final String pref_vmu = "vmu_floating"; + + public static boolean dynarecopt = true; + public static boolean idleskip = true; + public static boolean unstableopt = false; + public static int cable = 3; + public static int dcregion = 3; + public static int broadcast = 4; + public static boolean limitfps = true; + public static boolean nobatch = false; + public static boolean nosound = false; + public static boolean mipmaps = true; + public static boolean widescreen = false; + public static boolean subdivide = false; + public static int frameskip = 0; + public static boolean pvrrender = false; + public static boolean syncedrender = false; + public static String cheatdisk = "null"; + public static boolean usereios = false; + public static boolean nativeact = false; + public static int vibrationDuration = 20; + + public static String git_api = "https://api.github.com/repos/reicast/reicast-emulator/commits"; + public static String git_issues = "https://github.com/reicast/reicast-emulator/issues/"; + public static String log_url = "http://loungekatt.sytes.net:3194/ReicastBot/report/submit.php"; + public static String report_url = "http://loungekatt.sytes.net:3194/ReicastBot/report/logs/"; + + public static boolean externalIntent = false; + + private SharedPreferences mPrefs; + + public Config(Context mContext) { + mPrefs = PreferenceManager.getDefaultSharedPreferences(mContext); + } + + /** + * Load the user configuration from preferences + * + */ + public void getConfigurationPrefs() { + Config.dynarecopt = mPrefs.getBoolean(pref_dynarecopt, dynarecopt); + Config.unstableopt = mPrefs.getBoolean(pref_unstable, unstableopt); + Config.cable = mPrefs.getInt(pref_cable, cable); + Config.dcregion = mPrefs.getInt(pref_dcregion, dcregion); + Config.broadcast = mPrefs.getInt(pref_broadcast, broadcast); + Config.limitfps = mPrefs.getBoolean(pref_limitfps, limitfps); + Config.nosound = mPrefs.getBoolean(pref_nosound, nosound); + Config.mipmaps = mPrefs.getBoolean(pref_mipmaps, mipmaps); + Config.widescreen = mPrefs.getBoolean(pref_widescreen, widescreen); + Config.frameskip = mPrefs.getInt(pref_frameskip, frameskip); + Config.pvrrender = mPrefs.getBoolean(pref_pvrrender, pvrrender); + Config.syncedrender = mPrefs.getBoolean(pref_syncedrender, syncedrender); + Config.cheatdisk = mPrefs.getString(pref_cheatdisk, cheatdisk); + Config.usereios = mPrefs.getBoolean(pref_usereios, usereios); + Config.nativeact = mPrefs.getBoolean(pref_nativeact, nativeact); + } + + /** + * Write configuration settings to the emulator + * + */ + public void loadConfigurationPrefs() { + JNIdc.dynarec(Config.dynarecopt ? 1 : 0); + JNIdc.idleskip(Config.idleskip ? 1 : 0); + JNIdc.unstable(Config.unstableopt ? 1 : 0); + JNIdc.cable(Config.cable); + JNIdc.region(Config.dcregion); + JNIdc.broadcast(Config.broadcast); + JNIdc.limitfps(Config.limitfps ? 1 : 0); + JNIdc.nobatch(Config.nobatch ? 1 : 0); + JNIdc.nosound(Config.nosound ? 1 : 0); + JNIdc.mipmaps(Config.mipmaps ? 1 : 0); + JNIdc.widescreen(Config.widescreen ? 1 : 0); + JNIdc.subdivide(Config.subdivide ? 1 : 0); + JNIdc.frameskip(Config.frameskip); + JNIdc.pvrrender(Config.pvrrender ? 1 : 0); + JNIdc.syncedrender(Config.syncedrender ? 1 : 0); + JNIdc.usereios(Config.usereios ? 1 : 0); + JNIdc.cheatdisk(Config.cheatdisk); + JNIdc.dreamtime(DreamTime.getDreamtime()); + } + + /** + * Read the output of a shell command + * + * @param command + * The shell command being issued to the terminal + */ + public static String readOutput(String command) { + try { + Process p = Runtime.getRuntime().exec(command); + InputStream is = null; + if (p.waitFor() == 0) { + is = p.getInputStream(); + } else { + is = p.getErrorStream(); + } + BufferedReader br = new BufferedReader(new InputStreamReader(is), + 2048); + String line = br.readLine(); + br.close(); + return line; + } catch (Exception ex) { + return "ERROR: " + ex.getMessage(); + } + } + +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/config/EditVJoyActivity.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/EditVJoyActivity.java new file mode 100644 index 000000000..369602791 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/EditVJoyActivity.java @@ -0,0 +1,157 @@ +package com.reicast.emulator.config; + +import android.annotation.TargetApi; +import android.app.Activity; +import android.content.Intent; +import android.content.SharedPreferences; +import android.content.res.Configuration; +import android.os.Build; +import android.os.Bundle; +import android.preference.PreferenceManager; +import android.view.Gravity; +import android.view.KeyEvent; +import android.view.View; +import android.view.View.OnClickListener; +import android.view.ViewGroup.LayoutParams; +import android.view.Window; +import android.widget.ImageButton; +import android.widget.ImageView.ScaleType; +import android.widget.LinearLayout; +import android.widget.PopupWindow; + +import com.reicast.emulator.MainActivity; +import com.reicast.emulator.R; +import com.reicast.emulator.emu.GL2JNIView; +import com.reicast.emulator.emu.JNIdc; +import com.reicast.emulator.emu.OnScreenMenu; +import com.reicast.emulator.periph.VJoy; + +@TargetApi(Build.VERSION_CODES.HONEYCOMB_MR1) +public class EditVJoyActivity extends Activity { + GL2JNIView mView; + PopupWindow popUp; + LayoutParams params; + + private Config config; + + private float[][] vjoy_d_cached; + + View addbut(int x, OnClickListener ocl) { + ImageButton but = new ImageButton(this); + + but.setImageResource(x); + but.setScaleType(ScaleType.FIT_CENTER); + but.setOnClickListener(ocl); + + return but; + } + + @Override + protected void onCreate(Bundle icicle) { + requestWindowFeature(Window.FEATURE_NO_TITLE); + + popUp = createVJoyPopup(); + + // Call parent onCreate() + super.onCreate(icicle); + + SharedPreferences prefs = PreferenceManager + .getDefaultSharedPreferences(this); + config = new Config(EditVJoyActivity.this); + config.getConfigurationPrefs(); + + // Create the actual GLES view + mView = new GL2JNIView(EditVJoyActivity.this, config, null, false, + prefs.getInt(Config.pref_renderdepth, 24), 0, true); + mView.setFpsDisplay(null); + setContentView(mView); + + vjoy_d_cached = VJoy.readCustomVjoyValues(getApplicationContext()); + + JNIdc.show_osd(); + } + + @Override + protected void onPause() { + super.onPause(); + mView.onPause(); + } + + @Override + protected void onStop() { + mView.onStop(); + super.onStop(); + } + + + @Override + protected void onResume() { + super.onResume(); + mView.onResume(); + } + + PopupWindow createVJoyPopup() { + final PopupWindow popUp = new PopupWindow(this); + int p = OnScreenMenu.getPixelsFromDp(60, this); + params = new LayoutParams(p, p); + + LinearLayout hlay = new LinearLayout(this); + + hlay.setOrientation(LinearLayout.HORIZONTAL); + + hlay.addView(addbut(R.drawable.apply, new OnClickListener() { + public void onClick(View v) { + Intent inte = new Intent(EditVJoyActivity.this, MainActivity.class); + startActivity(inte); + finish(); + } + }), params); + + hlay.addView(addbut(R.drawable.reset, new OnClickListener() { + public void onClick(View v) { + // Reset VJoy positions and scale + VJoy.resetCustomVjoyValues(getApplicationContext()); + mView.vjoy_d_custom = VJoy + .readCustomVjoyValues(getApplicationContext()); + mView.resetEditMode(); + mView.requestLayout(); + popUp.dismiss(); + } + }), params); + + hlay.addView(addbut(R.drawable.close, new OnClickListener() { + public void onClick(View v) { + mView.restoreCustomVjoyValues(vjoy_d_cached); + popUp.dismiss(); + } + }), params); + + popUp.setContentView(hlay); + return popUp; + } + + public boolean onKeyDown(int keyCode, KeyEvent event) { + if (keyCode == KeyEvent.KEYCODE_MENU + || keyCode == KeyEvent.KEYCODE_BACK) { + if (!popUp.isShowing()) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + popUp.showAtLocation(mView, Gravity.BOTTOM, 0, 60); + } else { + popUp.showAtLocation(mView, Gravity.BOTTOM, 0, 0); + } + popUp.update(LayoutParams.WRAP_CONTENT, + LayoutParams.WRAP_CONTENT); + } else { + popUp.dismiss(); + } + + return true; + } else + return super.onKeyDown(keyCode, event); + } + + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/config/InputFragment.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/InputFragment.java new file mode 100644 index 000000000..21097fa5a --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/InputFragment.java @@ -0,0 +1,564 @@ +package com.reicast.emulator.config; + +import android.app.Activity; +import android.app.AlertDialog; +import android.app.Dialog; +import android.content.Context; +import android.content.DialogInterface; +import android.content.Intent; +import android.content.SharedPreferences; +import android.content.pm.PackageManager; +import android.os.Build; +import android.os.Bundle; +import android.os.Handler; +import android.os.Vibrator; +import android.preference.PreferenceManager; +import android.support.v4.app.Fragment; +import android.util.Log; +import android.view.InputDevice; +import android.view.KeyEvent; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.CompoundButton; +import android.widget.CompoundButton.OnCheckedChangeListener; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.SeekBar; +import android.widget.TableLayout; +import android.widget.TextView; +import android.widget.Toast; + +import com.bda.controller.Controller; +import com.bda.controller.ControllerListener; +import com.bda.controller.MotionEvent; +import com.bda.controller.StateEvent; +import com.reicast.emulator.MainActivity; +import com.reicast.emulator.R; +import com.reicast.emulator.periph.Gamepad; +import com.reicast.emulator.periph.MOGAInput; + +public class InputFragment extends Fragment { + + private Activity parentActivity; + private int listenForButton = 0; + private AlertDialog alertDialogSelectController; + private SharedPreferences sharedPreferences; + private CompoundButton switchTouchVibrationEnabled; + private CompoundButton micPluggedIntoFirstController; + + private Gamepad pad = new Gamepad(); + public MOGAInput moga = new MOGAInput(); + Vibrator vib; + + // Container Activity must implement this interface + public interface OnClickListener { + void onMainBrowseSelected(String path_entry, boolean games); + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + // Inflate the layout for this fragment + return inflater.inflate(R.layout.input_fragment, container, false); + } + + @Override + public void onViewCreated(View view, Bundle savedInstanceState) { + parentActivity = getActivity(); + + moga.onCreate(parentActivity, pad); + moga.mListener.setPlayerNum(1); + + sharedPreferences = PreferenceManager + .getDefaultSharedPreferences(parentActivity); + + Config.vibrationDuration = sharedPreferences.getInt(Config.pref_vibrationDuration, 20); + vib = (Vibrator) parentActivity.getSystemService(Context.VIBRATOR_SERVICE); + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { + ImageView icon_a = (ImageView) getView().findViewById( + R.id.controller_icon_a); + icon_a.setAlpha(0.8f); + ImageView icon_b = (ImageView) getView().findViewById( + R.id.controller_icon_b); + icon_b.setAlpha(0.8f); + ImageView icon_c = (ImageView) getView().findViewById( + R.id.controller_icon_c); + icon_c.setAlpha(0.8f); + ImageView icon_d = (ImageView) getView().findViewById( + R.id.controller_icon_d); + icon_d.setAlpha(0.8f); + } + + Button buttonLaunchEditor = (Button) getView().findViewById( + R.id.buttonLaunchEditor); + buttonLaunchEditor.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + Intent inte = new Intent(parentActivity, EditVJoyActivity.class); + startActivity(inte); + } + }); + + if (!MainActivity.isBiosExisting(parentActivity) || !MainActivity.isFlashExisting(parentActivity)) + buttonLaunchEditor.setEnabled(false); + + final TextView duration = (TextView) getView().findViewById(R.id.vibDuration_current); + final LinearLayout vibLay = (LinearLayout) getView().findViewById(R.id.vibDuration_layout); + final SeekBar vibSeek = (SeekBar) getView().findViewById(R.id.vib_seekBar); + + if (sharedPreferences.getBoolean(Config.pref_touchvibe, true)) { + vibLay.setVisibility(View.VISIBLE); + } else { + vibLay.setVisibility(View.GONE); + } + + duration.setText(String.valueOf(Config.vibrationDuration + " ms")); + vibSeek.setProgress(Config.vibrationDuration); + + vibSeek.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { + public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { + duration.setText(String.valueOf(progress + 5 + " ms")); + } + + public void onStartTrackingTouch(SeekBar seekBar) { + // TODO Auto-generated method stub + } + + public void onStopTrackingTouch(SeekBar seekBar) { + int progress = seekBar.getProgress() + 5; + sharedPreferences.edit().putInt(Config.pref_vibrationDuration, progress).commit(); + Config.vibrationDuration = progress; + vib.vibrate(progress); + } + }); + + OnCheckedChangeListener touch_vibration = new OnCheckedChangeListener() { + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + sharedPreferences.edit() + .putBoolean(Config.pref_touchvibe, isChecked).commit(); + vibLay.setVisibility( isChecked ? View.VISIBLE : View.GONE ); + } + }; + switchTouchVibrationEnabled = (CompoundButton) getView().findViewById( + R.id.switchTouchVibrationEnabled); + boolean vibrate = sharedPreferences.getBoolean(Config.pref_touchvibe, true); + if (vibrate) { + switchTouchVibrationEnabled.setChecked(true); + } else { + switchTouchVibrationEnabled.setChecked(false); + } + switchTouchVibrationEnabled.setOnCheckedChangeListener(touch_vibration); + + micPluggedIntoFirstController = (CompoundButton) getView().findViewById( + R.id.micInPort2); + boolean micPluggedIn = sharedPreferences.getBoolean(Config.pref_mic, + false); + micPluggedIntoFirstController.setChecked(micPluggedIn); + if (getActivity().getPackageManager().hasSystemFeature( + PackageManager.FEATURE_MICROPHONE)) { + // Microphone is present on the device + micPluggedIntoFirstController + .setOnCheckedChangeListener(new OnCheckedChangeListener() { + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + sharedPreferences.edit() + .putBoolean(Config.pref_mic, isChecked) + .commit(); + } + }); + } else { + micPluggedIntoFirstController.setEnabled(false); + } + + Button buttonKeycodeEditor = (Button) getView().findViewById( + R.id.buttonKeycodeEditor); + buttonKeycodeEditor.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + InputModFragment inputModFrag = new InputModFragment(); + getActivity() + .getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, inputModFrag, + "INPUT_MOD_FRAG").addToBackStack(null).commit(); + } + }); + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { + + Button buttonSelectControllerPlayer1 = (Button) getView() + .findViewById(R.id.buttonSelectControllerPlayer1); + buttonSelectControllerPlayer1 + .setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + selectController(1); + } + }); + Button buttonSelectControllerPlayer2 = (Button) getView() + .findViewById(R.id.buttonSelectControllerPlayer2); + buttonSelectControllerPlayer2 + .setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + selectController(2); + } + }); + Button buttonSelectControllerPlayer3 = (Button) getView() + .findViewById(R.id.buttonSelectControllerPlayer3); + buttonSelectControllerPlayer3 + .setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + selectController(3); + } + }); + Button buttonSelectControllerPlayer4 = (Button) getView() + .findViewById(R.id.buttonSelectControllerPlayer4); + buttonSelectControllerPlayer4 + .setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + selectController(4); + } + }); + + Button buttonRemoveControllerPlayer1 = (Button) getView() + .findViewById(R.id.buttonRemoveControllerPlayer1); + buttonRemoveControllerPlayer1 + .setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + removeController(1); + } + }); + + Button buttonRemoveControllerPlayer2 = (Button) getView() + .findViewById(R.id.buttonRemoveControllerPlayer2); + buttonRemoveControllerPlayer2 + .setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + removeController(2); + } + }); + + Button buttonRemoveControllerPlayer3 = (Button) getView() + .findViewById(R.id.buttonRemoveControllerPlayer3); + buttonRemoveControllerPlayer3 + .setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + removeController(3); + } + }); + + Button buttonRemoveControllerPlayer4 = (Button) getView() + .findViewById(R.id.buttonRemoveControllerPlayer4); + buttonRemoveControllerPlayer4 + .setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + removeController(4); + } + }); + + updateControllers(); + + } else { + + TableLayout input_devices = (TableLayout) parentActivity + .findViewById(R.id.input_devices); + input_devices.setVisibility(View.GONE); + + } + + updateVibration(); + } + + private void updateVibration() { + boolean touchVibrationEnabled = sharedPreferences.getBoolean( + Config.pref_touchvibe, true); + switchTouchVibrationEnabled.setChecked(touchVibrationEnabled); + } + + private void updateControllers() { + String deviceDescriptorPlayer1 = sharedPreferences.getString( + Gamepad.pref_player1, null); + String deviceDescriptorPlayer2 = sharedPreferences.getString( + Gamepad.pref_player2, null); + String deviceDescriptorPlayer3 = sharedPreferences.getString( + Gamepad.pref_player3, null); + String deviceDescriptorPlayer4 = sharedPreferences.getString( + Gamepad.pref_player4, null); + + String labelPlayer1 = null, labelPlayer2 = null, labelPlayer3 = null, labelPlayer4 = null; + + for (int devideId : InputDevice.getDeviceIds()) { + InputDevice dev = InputDevice.getDevice(devideId); + String descriptor = null; + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) { + descriptor = dev.getDescriptor(); + } else { + descriptor = dev.getName(); + } + + if (descriptor != null) { + if (descriptor.equals(deviceDescriptorPlayer1)) + labelPlayer1 = dev.getName() + " (" + descriptor + ")"; + else if (descriptor.equals(deviceDescriptorPlayer2)) + labelPlayer2 = dev.getName() + " (" + descriptor + ")"; + else if (descriptor.equals(deviceDescriptorPlayer3)) + labelPlayer3 = dev.getName() + " (" + descriptor + ")"; + else if (descriptor.equals(deviceDescriptorPlayer4)) + labelPlayer4 = dev.getName() + " (" + descriptor + ")"; + } + } + + TextView textViewDeviceDescriptorPlayer1 = (TextView) getView() + .findViewById(R.id.textViewDeviceDescriptorPlayer1); + Button buttonRemoveControllerPlayer1 = (Button) getView().findViewById( + R.id.buttonRemoveControllerPlayer1); + if (labelPlayer1 != null) { + textViewDeviceDescriptorPlayer1.setText(labelPlayer1); + buttonRemoveControllerPlayer1.setEnabled(true); + } else { + if (deviceDescriptorPlayer1 != null) { + textViewDeviceDescriptorPlayer1 + .setText(getString(R.string.controller_not_connected) + + " (" + deviceDescriptorPlayer1 + ")"); + buttonRemoveControllerPlayer1.setEnabled(true); + } else { + textViewDeviceDescriptorPlayer1 + .setText(R.string.controller_none_selected); + buttonRemoveControllerPlayer1.setEnabled(false); + } + } + + TextView textViewDeviceDescriptorPlayer2 = (TextView) getView() + .findViewById(R.id.textViewDeviceDescriptorPlayer2); + Button buttonRemoveControllerPlayer2 = (Button) getView().findViewById( + R.id.buttonRemoveControllerPlayer2); + if (labelPlayer2 != null) { + textViewDeviceDescriptorPlayer2.setText(labelPlayer2); + buttonRemoveControllerPlayer2.setEnabled(true); + } else { + if (deviceDescriptorPlayer2 != null) { + textViewDeviceDescriptorPlayer2 + .setText(getString(R.string.controller_not_connected) + + " (" + deviceDescriptorPlayer2 + ")"); + buttonRemoveControllerPlayer2.setEnabled(true); + } else { + textViewDeviceDescriptorPlayer2 + .setText(R.string.controller_none_selected); + buttonRemoveControllerPlayer2.setEnabled(false); + } + } + + TextView textViewDeviceDescriptorPlayer3 = (TextView) getView() + .findViewById(R.id.textViewDeviceDescriptorPlayer3); + Button buttonRemoveControllerPlayer3 = (Button) getView().findViewById( + R.id.buttonRemoveControllerPlayer3); + if (labelPlayer3 != null) { + textViewDeviceDescriptorPlayer3.setText(labelPlayer3); + buttonRemoveControllerPlayer3.setEnabled(true); + } else { + if (deviceDescriptorPlayer3 != null) { + textViewDeviceDescriptorPlayer3 + .setText(getString(R.string.controller_not_connected) + + " (" + deviceDescriptorPlayer3 + ")"); + buttonRemoveControllerPlayer3.setEnabled(true); + } else { + textViewDeviceDescriptorPlayer3 + .setText(R.string.controller_none_selected); + buttonRemoveControllerPlayer3.setEnabled(false); + } + } + + TextView textViewDeviceDescriptorPlayer4 = (TextView) getView() + .findViewById(R.id.textViewDeviceDescriptorPlayer4); + Button buttonRemoveControllerPlayer4 = (Button) getView().findViewById( + R.id.buttonRemoveControllerPlayer4); + if (labelPlayer4 != null) { + textViewDeviceDescriptorPlayer4.setText(labelPlayer4); + buttonRemoveControllerPlayer4.setEnabled(true); + } else { + if (deviceDescriptorPlayer4 != null) { + textViewDeviceDescriptorPlayer4 + .setText(getString(R.string.controller_not_connected) + + " (" + deviceDescriptorPlayer4 + ")"); + buttonRemoveControllerPlayer4.setEnabled(true); + } else { + textViewDeviceDescriptorPlayer4 + .setText(R.string.controller_none_selected); + buttonRemoveControllerPlayer4.setEnabled(false); + } + } + } + + private void selectController(int playerNum) { + listenForButton = playerNum; + + AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity); + builder.setTitle(R.string.select_controller_title); + builder.setMessage(getString(R.string.select_controller_message, + String.valueOf(listenForButton))); + builder.setPositiveButton(R.string.cancel, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + listenForButton = 0; + dialog.dismiss(); + } + }); + builder.setNegativeButton(R.string.manual, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + InputModFragment inputModFrag = new InputModFragment(); + Bundle args = new Bundle(); + args.putInt("portNumber", listenForButton - 1); + inputModFrag.setArguments(args); + listenForButton = 0; + getActivity() + .getSupportFragmentManager() + .beginTransaction() + .replace(R.id.fragment_container, inputModFrag, + "INPUT_MOD_FRAG").addToBackStack(null) + .commit(); + dialog.dismiss(); + } + }); + builder.setOnKeyListener(new Dialog.OnKeyListener() { + public boolean onKey(DialogInterface dialog, int keyCode, + KeyEvent event) { + return mapDevice(keyCode, event); + } + }); + alertDialogSelectController = builder.create(); + alertDialogSelectController.show(); + } + + private boolean mapDevice(int keyCode, KeyEvent event) { + if (keyCode == KeyEvent.KEYCODE_MENU + || keyCode == KeyEvent.KEYCODE_VOLUME_UP + || keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) + return false; + if (!pad.IsXperiaPlay() && keyCode == KeyEvent.KEYCODE_BACK) + return false; + + String descriptor = null; + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) { + if (pad.isActiveMoga[listenForButton]) { + MogaListener config = new MogaListener(listenForButton); + moga.mController.setListener(config, new Handler()); + descriptor = config.getController(); + } + descriptor = InputDevice.getDevice(event.getDeviceId()) + .getDescriptor(); + } else { + descriptor = InputDevice.getDevice(event.getDeviceId()).getName(); + } + + if (descriptor == null) + return false; + + String deviceDescriptorPlayer1 = sharedPreferences.getString( + Gamepad.pref_player1, null); + String deviceDescriptorPlayer2 = sharedPreferences.getString( + Gamepad.pref_player2, null); + String deviceDescriptorPlayer3 = sharedPreferences.getString( + Gamepad.pref_player3, null); + String deviceDescriptorPlayer4 = sharedPreferences.getString( + Gamepad.pref_player4, null); + + if (descriptor.equals(deviceDescriptorPlayer1) + || descriptor.equals(deviceDescriptorPlayer2) + || descriptor.equals(deviceDescriptorPlayer3) + || descriptor.equals(deviceDescriptorPlayer4)) { + Toast.makeText(parentActivity, R.string.controller_already_in_use, + Toast.LENGTH_SHORT).show(); + return true; + } + + switch (listenForButton) { + case 0: + return false; + case 1: + sharedPreferences.edit() + .putString(Gamepad.pref_player1, descriptor).commit(); + break; + case 2: + sharedPreferences.edit() + .putString(Gamepad.pref_player2, descriptor).commit(); + break; + case 3: + sharedPreferences.edit() + .putString(Gamepad.pref_player3, descriptor).commit(); + break; + case 4: + sharedPreferences.edit() + .putString(Gamepad.pref_player4, descriptor).commit(); + break; + } + + Log.d("New controller for port " + listenForButton + ":", descriptor); + + listenForButton = 0; + alertDialogSelectController.cancel(); + updateControllers(); + + return true; + } + + private void removeController(int playerNum) { + switch (playerNum) { + case 1: + sharedPreferences.edit().putString(Gamepad.pref_player1, null) + .commit(); + break; + case 2: + sharedPreferences.edit().putString(Gamepad.pref_player2, null) + .commit(); + break; + case 3: + sharedPreferences.edit().putString(Gamepad.pref_player3, null) + .commit(); + break; + case 4: + sharedPreferences.edit().putString(Gamepad.pref_player4, null) + .commit(); + break; + } + + updateControllers(); + } + + private final class MogaListener implements ControllerListener { + + private int playerNum; + private String controllerId; + + public MogaListener(int playerNum) { + this.playerNum = playerNum; + } + + public void onKeyEvent(com.bda.controller.KeyEvent event) { + controllerId = String.valueOf(event.getControllerId()); + } + + public void onMotionEvent(MotionEvent arg0) { + + } + + public String getController() { + return controllerId; + } + + public void onStateEvent(StateEvent event) { + if (event.getState() == StateEvent.STATE_CONNECTION && + event.getAction() == MOGAInput.ACTION_CONNECTED) { + + int mControllerVersion = moga.mController + .getState(Controller.STATE_CURRENT_PRODUCT_VERSION); + + if (mControllerVersion == Controller.ACTION_VERSION_MOGA || + mControllerVersion == Controller.ACTION_VERSION_MOGAPRO) { + pad.isActiveMoga[playerNum] = true; + } + } + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/config/InputModFragment.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/InputModFragment.java new file mode 100644 index 000000000..93328a177 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/InputModFragment.java @@ -0,0 +1,633 @@ +package com.reicast.emulator.config; + +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; + +import android.annotation.TargetApi; +import android.app.AlertDialog; +import android.app.Dialog; +import android.content.Context; +import android.content.DialogInterface; +import android.content.SharedPreferences; +import android.graphics.Bitmap; +import android.graphics.BitmapFactory; +import android.graphics.Matrix; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.Drawable; +import android.os.Build; +import android.os.Bundle; +import android.preference.PreferenceManager; +import android.support.v4.app.Fragment; +import android.view.InputDevice; +import android.view.KeyEvent; +import android.view.LayoutInflater; +import android.view.MotionEvent; +import android.view.View; +import android.view.ViewGroup; +import android.widget.AdapterView; +import android.widget.AdapterView.OnItemSelectedListener; +import android.widget.ArrayAdapter; +import android.widget.Button; +import android.widget.CompoundButton; +import android.widget.CompoundButton.OnCheckedChangeListener; +import android.widget.ImageView; +import android.widget.Spinner; +import android.widget.TextView; + +import com.reicast.emulator.R; +import com.reicast.emulator.periph.Gamepad; + +public class InputModFragment extends Fragment { + + private SharedPreferences mPrefs; + + private CompoundButton switchJoystickDpadEnabled; + private CompoundButton switchRightStickLREnabled; + private CompoundButton switchModifiedLayoutEnabled; + private CompoundButton switchCompatibilityEnabled; + + private TextView a_button_text; + private TextView b_button_text; + private TextView x_button_text; + private TextView y_button_text; + private TextView l_button_text; + private TextView r_button_text; + private TextView dpad_up_text; + private TextView dpad_down_text; + private TextView dpad_left_text; + private TextView dpad_right_text; + private TextView start_button_text; + private TextView select_button_text; + + private String player = "_A"; + private int sS = 2; + private int playerNum = -1; + private mapKeyCode mKey; + + // Container Activity must implement this interface + public interface OnClickListener { + void onMainBrowseSelected(String path_entry, boolean games); + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + // Inflate the layout for this fragment + return inflater.inflate(R.layout.input_mod_fragment, container, false); + } + + @Override + public void onViewCreated(View view, Bundle savedInstanceState) { + + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) { + Runtime.getRuntime().freeMemory(); + System.gc(); + } + + mPrefs = PreferenceManager.getDefaultSharedPreferences(getActivity()); + + final String[] controllers = getResources().getStringArray(R.array.controllers); + + Bundle b = getArguments(); + if (b != null) { + playerNum = b.getInt("portNumber", -1); + } + + switchJoystickDpadEnabled = (CompoundButton) getView().findViewById( + R.id.switchJoystickDpadEnabled); + switchRightStickLREnabled = (CompoundButton) getView().findViewById( + R.id.switchRightStickLREnabled); + switchModifiedLayoutEnabled = (CompoundButton) getView().findViewById( + R.id.switchModifiedLayoutEnabled); + switchCompatibilityEnabled = (CompoundButton) getView().findViewById( + R.id.switchCompatibilityEnabled); + + OnCheckedChangeListener joystick_mode = new OnCheckedChangeListener() { + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit() + .putBoolean(Gamepad.pref_js_merged + player, + isChecked).commit(); + } + }; + + switchJoystickDpadEnabled.setOnCheckedChangeListener(joystick_mode); + + OnCheckedChangeListener rstick_mode = new OnCheckedChangeListener() { + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit() + .putBoolean(Gamepad.pref_js_rbuttons + player, + isChecked).commit(); + } + }; + + switchRightStickLREnabled.setOnCheckedChangeListener(rstick_mode); + + OnCheckedChangeListener modified_layout = new OnCheckedChangeListener() { + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit() + .putBoolean(Gamepad.pref_js_modified + player, + isChecked).commit(); + } + }; + + switchModifiedLayoutEnabled.setOnCheckedChangeListener(modified_layout); + + OnCheckedChangeListener compat_mode = new OnCheckedChangeListener() { + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit() + .putBoolean(Gamepad.pref_js_compat + player, isChecked) + .commit(); + if (isChecked) { + selectController(); + } + } + }; + + switchCompatibilityEnabled.setOnCheckedChangeListener(compat_mode); + + mKey = new mapKeyCode(getActivity()); + + ImageView a_button_icon = (ImageView) getView().findViewById( + R.id.a_button_icon); + a_button_icon.setImageDrawable(getButtonImage(448 / sS, 0)); + a_button_text = (TextView) getView().findViewById(R.id.a_button_key); + Button a_button = (Button) getView().findViewById(R.id.a_button_edit); + a_button.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_button_a, a_button_text); + } + }); + Button a_remove = (Button) getView().findViewById(R.id.remove_a_button); + a_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_button_a, a_button_text); + } + }); + + ImageView b_button_icon = (ImageView) getView().findViewById( + R.id.b_button_icon); + b_button_icon.setImageDrawable(getButtonImage(384 / sS, 0)); + b_button_text = (TextView) getView().findViewById(R.id.b_button_key); + Button b_button = (Button) getView().findViewById(R.id.b_button_edit); + b_button.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_button_b, b_button_text); + } + }); + Button b_remove = (Button) getView().findViewById(R.id.remove_b_button); + b_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_button_b, b_button_text); + } + }); + + ImageView x_button_icon = (ImageView) getView().findViewById( + R.id.x_button_icon); + x_button_icon.setImageDrawable(getButtonImage(256 / sS, 0)); + x_button_text = (TextView) getView().findViewById(R.id.x_button_key); + Button x_button = (Button) getView().findViewById(R.id.x_button_edit); + x_button.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_button_x, x_button_text); + } + }); + Button x_remove = (Button) getView().findViewById(R.id.remove_x_button); + x_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_button_x, x_button_text); + } + }); + + ImageView y_button_icon = (ImageView) getView().findViewById( + R.id.y_button_icon); + y_button_icon.setImageDrawable(getButtonImage(320 / sS, 0)); + y_button_text = (TextView) getView().findViewById(R.id.y_button_key); + Button y_button = (Button) getView().findViewById(R.id.y_button_edit); + y_button.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_button_y, y_button_text); + } + }); + Button y_remove = (Button) getView().findViewById(R.id.remove_y_button); + y_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_button_y, y_button_text); + } + }); + + ImageView l_button_icon = (ImageView) getView().findViewById( + R.id.l_button_icon); + l_button_icon.setImageDrawable(getButtonImage(78 / sS, 64 / sS)); + l_button_text = (TextView) getView().findViewById(R.id.l_button_key); + Button l_button = (Button) getView().findViewById(R.id.l_button_edit); + l_button.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_button_l, l_button_text); + } + }); + Button l_remove = (Button) getView().findViewById(R.id.remove_l_button); + l_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_button_l, l_button_text); + } + }); + + ImageView r_button_icon = (ImageView) getView().findViewById( + R.id.r_button_icon); + r_button_icon.setImageDrawable(getButtonImage(162 / sS, 64 / sS)); + r_button_text = (TextView) getView().findViewById(R.id.r_button_key); + Button r_button = (Button) getView().findViewById(R.id.r_button_edit); + r_button.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_button_r, r_button_text); + } + }); + Button r_remove = (Button) getView().findViewById(R.id.remove_r_button); + r_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_button_r, r_button_text); + } + }); + + dpad_up_text = (TextView) getView().findViewById(R.id.dpad_up_key); + Button dpad_up = (Button) getView().findViewById(R.id.dpad_up_edit); + dpad_up.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_dpad_up, dpad_up_text); + } + }); + Button up_remove = (Button) getView().findViewById(R.id.remove_dpad_up); + up_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_dpad_up, dpad_up_text); + } + }); + + dpad_down_text = (TextView) getView().findViewById(R.id.dpad_down_key); + Button dpad_down = (Button) getView().findViewById(R.id.dpad_down_edit); + dpad_down.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_dpad_down, dpad_down_text); + } + }); + Button down_remove = (Button) getView().findViewById( + R.id.remove_dpad_down); + down_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_dpad_down, dpad_down_text); + } + }); + + dpad_left_text = (TextView) getView().findViewById(R.id.dpad_left_key); + Button dpad_left = (Button) getView().findViewById(R.id.dpad_left_edit); + dpad_left.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_dpad_left, dpad_left_text); + } + }); + Button left_remove = (Button) getView().findViewById( + R.id.remove_dpad_left); + left_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_dpad_left, dpad_left_text); + } + }); + + dpad_right_text = (TextView) getView() + .findViewById(R.id.dpad_right_key); + Button dpad_right = (Button) getView().findViewById( + R.id.dpad_right_edit); + dpad_right.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_dpad_right, dpad_right_text); + } + }); + Button right_remove = (Button) getView().findViewById( + R.id.remove_dpad_right); + right_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_dpad_right, dpad_right_text); + } + }); + + ImageView start_button_icon = (ImageView) getView().findViewById( + R.id.start_button_icon); + start_button_icon.setImageDrawable(getButtonImage(0, 64 / sS)); + start_button_text = (TextView) getView().findViewById( + R.id.start_button_key); + Button start_button = (Button) getView().findViewById( + R.id.start_button_edit); + start_button.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_button_start, start_button_text); + } + }); + Button start_remove = (Button) getView() + .findViewById(R.id.remove_start); + start_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_button_start, start_button_text); + } + }); + + ImageView select_button_icon = (ImageView) getView().findViewById( + R.id.select_button_icon); + select_button_icon.setImageResource(R.drawable.ic_drawer); + select_button_text = (TextView) getView().findViewById( + R.id.select_button_key); + Button select_button = (Button) getView().findViewById( + R.id.select_button_edit); + select_button.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + mKey.intiateSearch(Gamepad.pref_button_select, + select_button_text); + } + }); + Button select_remove = (Button) getView().findViewById( + R.id.remove_select); + select_remove.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + remKeyCode(Gamepad.pref_button_select, select_button_text); + } + }); + + Spinner player_spnr = (Spinner) getView().findViewById( + R.id.player_spinner); + ArrayAdapter playerAdapter = new ArrayAdapter( + getActivity(), android.R.layout.simple_spinner_item, + controllers); + playerAdapter + .setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + player_spnr.setAdapter(playerAdapter); + if (playerNum != -1) { + player_spnr.setSelection(playerNum, true); + } + player_spnr.setOnItemSelectedListener(new OnItemSelectedListener() { + + public void onItemSelected(AdapterView parent, View view, + int pos, long id) { + String selection = parent.getItemAtPosition(pos).toString(); + player = "_" + + selection.substring(selection.lastIndexOf(" ") + 1, + selection.length()); + playerNum = pos; + updateController(player); + } + + public void onNothingSelected(AdapterView arg0) { + + } + + }); + updateController(player); + } + + /** + * Retrieve an image to serve as a visual representation + * + * @param x + * The x start value of the image within the atlas + * @param y + * The y start value of the image within the atlas + */ + private Drawable getButtonImage(int x, int y) { + Bitmap image = null; + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) { + Runtime.getRuntime().freeMemory(); + System.gc(); + } + try { + File buttons = null; + InputStream bitmap = null; + String theme = mPrefs.getString(Config.pref_theme, null); + if (theme != null) { + buttons = new File(theme); + } + if (buttons != null && buttons.exists()) { + bitmap = new FileInputStream(buttons); + } else { + bitmap = getResources().getAssets().open("buttons.png"); + } + BitmapFactory.Options options = new BitmapFactory.Options(); + options.inSampleSize = sS; + image = BitmapFactory.decodeStream(bitmap, null, options); + bitmap.close(); + bitmap = null; + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) { + Runtime.getRuntime().freeMemory(); + System.gc(); + } + Matrix matrix = new Matrix(); + matrix.postScale(32, 32); + Bitmap resizedBitmap = Bitmap.createBitmap(image, x, y, 64 / sS, + 64 / sS, matrix, true); + @SuppressWarnings("deprecation") + BitmapDrawable bmd = new BitmapDrawable(resizedBitmap); + image.recycle(); + image = null; + return bmd; + } catch (IOException e1) { + e1.printStackTrace(); + } catch (OutOfMemoryError E) { + if (sS == 2) { + if (image != null) { + image.recycle(); + image = null; + } + sS = 4; + return getButtonImage(x, y); + } else { + E.printStackTrace(); + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) { + Runtime.getRuntime().freeMemory(); + System.gc(); + } + } + } + return getResources().getDrawable(R.drawable.input); + } + + /** + * Prompt the user to specify the controller to modify + * + */ + private void selectController() { + AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); + builder.setTitle(R.string.select_controller_title); + builder.setMessage(getString(R.string.select_controller_message, player.replace("_", ""))); + builder.setNegativeButton(R.string.cancel, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + dialog.dismiss(); + } + }); + builder.setOnKeyListener(new Dialog.OnKeyListener() { + public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) { + mPrefs.edit() + .putInt("controller" + player, event.getDeviceId()) + .commit(); + dialog.dismiss(); + return true; + } + }); + builder.create(); + builder.show(); + } + + private class mapKeyCode extends AlertDialog.Builder { + private String button; + private TextView output; + private boolean isMapping; + + public mapKeyCode(Context c) { + super(c); + } + + /** + * Prompt the user for the button to be assigned + * + * @param button + * The name of the emulator button being defined + * @param output + * The output display for the assigned button value + */ + public void intiateSearch(final String button, final TextView output) { + this.button = button; + this.output = output; + isMapping = true; + AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); + builder.setTitle(R.string.map_keycode_title); + builder.setMessage(getString(R.string.map_keycode_message, button.replace("_", " "))); + builder.setNegativeButton(R.string.cancel, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + isMapping = false; + dialog.dismiss(); + } + }); + builder.setOnKeyListener(new Dialog.OnKeyListener() { + public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) { + mapButton(keyCode, event); + isMapping = false; + dialog.dismiss(); + return getKeyCode(button, output); + } + }); + builder.create(); + builder.show(); + } + + /** + * Assign the user button to the emulator button + * + * @param keyCode + * The keycode generated by the button being assigned + * @param event + * The keyevent generated by the button being assigned + */ + private int mapButton(int keyCode, KeyEvent event) { + if (Build.MODEL.startsWith("R800")) { + if (keyCode == KeyEvent.KEYCODE_MENU) + return -1; + } else { + if (keyCode == KeyEvent.KEYCODE_BACK) + return -1; + } + + mPrefs.edit().putInt(button + player, keyCode).commit(); + + return keyCode; + } + + @TargetApi(Build.VERSION_CODES.HONEYCOMB_MR1) + public boolean dispatchTouchEvent(MotionEvent ev) { + if (isMapping) { + if ((ev.getSource() & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) { + if (ev.getAxisValue(MotionEvent.AXIS_HAT_X) != 0) { + + } + if (ev.getAxisValue(MotionEvent.AXIS_HAT_Y) != 0) { + + } + if (ev.getAxisValue(MotionEvent.AXIS_Z) != 0) { + + } + if (ev.getAxisValue(MotionEvent.AXIS_RZ) != 0) { + + } + if (ev.getAxisValue(MotionEvent.AXIS_RTRIGGER) != 0) { + + } + if (ev.getAxisValue(MotionEvent.AXIS_LTRIGGER) != 0) { + + } + if (ev.getAxisValue(MotionEvent.AXIS_THROTTLE) != 0) { + + } + if (ev.getAxisValue(MotionEvent.AXIS_BRAKE) != 0) { + + } + String label = output.getText().toString(); + if (label.contains(":")) { + label = label.substring(0, label.indexOf(":")); + } + + output.setText(label + ": " + ev.getAction()); + } + + } + return dispatchTouchEvent(ev); + } + } + + private void updateController(String player) { + switchJoystickDpadEnabled.setChecked(mPrefs.getBoolean( + Gamepad.pref_js_merged + player, false)); + switchModifiedLayoutEnabled.setChecked(mPrefs.getBoolean( + Gamepad.pref_js_modified + player, false)); + switchCompatibilityEnabled.setChecked(mPrefs.getBoolean( + Gamepad.pref_js_compat + player, false)); + getKeyCode(Gamepad.pref_button_a, a_button_text); + getKeyCode(Gamepad.pref_button_b, b_button_text); + getKeyCode(Gamepad.pref_button_x, x_button_text); + getKeyCode(Gamepad.pref_button_y, y_button_text); + getKeyCode(Gamepad.pref_button_l, l_button_text); + getKeyCode(Gamepad.pref_button_r, r_button_text); + getKeyCode(Gamepad.pref_dpad_up, dpad_up_text); + getKeyCode(Gamepad.pref_dpad_down, dpad_down_text); + getKeyCode(Gamepad.pref_dpad_left, dpad_left_text); + getKeyCode(Gamepad.pref_dpad_right, dpad_right_text); + getKeyCode(Gamepad.pref_button_start, start_button_text); + getKeyCode(Gamepad.pref_button_select, select_button_text); + } + + private boolean getKeyCode(final String button, final TextView output) { + int keyCode = mPrefs.getInt(button + player, -1); + if (keyCode != -1) { + String label = output.getText().toString(); + if (label.contains(":")) { + label = label.substring(0, label.indexOf(":")); + } + output.setText(label + ": " + keyCode); + return true; + } else { + String label = output.getText().toString(); + if (label.contains(":")) { + label = label.substring(0, label.indexOf(":")); + } + output.setText(label); + return false; + } + } + + private void remKeyCode(final String button, TextView output) { + mPrefs.edit().remove(button + player).commit(); + getKeyCode(button, output); + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/config/OptionsFragment.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/OptionsFragment.java new file mode 100644 index 000000000..2d187ebd6 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/config/OptionsFragment.java @@ -0,0 +1,661 @@ +package com.reicast.emulator.config; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.FilenameFilter; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.util.Collection; +import java.util.HashSet; +import java.util.Iterator; +import java.util.List; + +import org.apache.commons.lang3.StringUtils; + +import android.app.Activity; +import android.content.Context; +import android.content.SharedPreferences; +import android.os.AsyncTask; +import android.os.Build; +import android.os.Bundle; +import android.os.Environment; +import android.preference.PreferenceManager; +import android.support.v4.app.Fragment; +import android.text.Editable; +import android.text.TextWatcher; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.view.inputmethod.InputMethodManager; +import android.widget.AdapterView; +import android.widget.AdapterView.OnItemSelectedListener; +import android.widget.ArrayAdapter; +import android.widget.Button; +import android.widget.CompoundButton; +import android.widget.CompoundButton.OnCheckedChangeListener; +import android.widget.EditText; +import android.widget.SeekBar; +import android.widget.SeekBar.OnSeekBarChangeListener; +import android.widget.Spinner; +import android.widget.Toast; + +import com.android.util.FileUtils; +import com.reicast.emulator.FileBrowser; +import com.reicast.emulator.R; +import com.reicast.emulator.emu.GL2JNIView; +import com.reicast.emulator.emu.JNIdc; + +public class OptionsFragment extends Fragment { + + private Config config; + + private Button mainBrowse; + private Button gameBrowse; + private Spinner mSpnrThemes; + private OnClickListener mCallback; + + private SharedPreferences mPrefs; + private File sdcard = Environment.getExternalStorageDirectory(); + private String home_directory = sdcard.getAbsolutePath().replace("emulated/0", "sdcard0"); + private String game_directory = sdcard.getAbsolutePath().replace("emulated/0", "sdcard0"); + + private String[] codes; + + // Container Activity must implement this interface + public interface OnClickListener { + public void onMainBrowseSelected(String path_entry, boolean games); + } + + @Override + public void onAttach(Activity activity) { + super.onAttach(activity); + + // This makes sure that the container activity has implemented + // the callback interface. If not, it throws an exception + try { + mCallback = (OnClickListener) activity; + } catch (ClassCastException e) { + throw new ClassCastException(activity.toString() + + " must implement OnClickListener"); + } + + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + // Inflate the layout for this fragment + return inflater.inflate(R.layout.configure_fragment, container, false); + } + + @Override + public void onViewCreated(View view, Bundle savedInstanceState) { + + mPrefs = PreferenceManager.getDefaultSharedPreferences(getActivity()); + + // Specialized handler for devices with an extSdCard mount for external + HashSet extStorage = FileBrowser.getExternalMounts(); + if (extStorage != null && !extStorage.isEmpty()) { + for (Iterator sd = extStorage.iterator(); sd.hasNext();) { + String sdCardPath = sd.next().replace("mnt/media_rw", "storage"); + if (!sdCardPath.equals(sdcard.getAbsolutePath())) { + game_directory = sdCardPath; + } + } + } + + home_directory = mPrefs.getString(Config.pref_home, home_directory); + config = new Config(getActivity()); + config.getConfigurationPrefs(); + + // Generate the menu options and fill in existing settings + + mainBrowse = (Button) getView().findViewById(R.id.browse_main_path); + mSpnrThemes = (Spinner) getView().findViewById(R.id.pick_button_theme); + new LocateThemes().execute(home_directory + "/themes"); + + final EditText editBrowse = (EditText) getView().findViewById( + R.id.main_path); + editBrowse.setText(home_directory); + + mainBrowse.setOnClickListener(new View.OnClickListener() { + public void onClick(View view) { + mPrefs.edit().remove(Config.pref_home).commit(); + hideSoftKeyBoard(); + mCallback.onMainBrowseSelected(home_directory, false); + } + }); + + editBrowse.addTextChangedListener(new TextWatcher() { + public void afterTextChanged(Editable s) { + if (editBrowse.getText() != null) { + home_directory = editBrowse.getText().toString(); + if (home_directory.endsWith("/data")) { + home_directory.replace("/data", ""); + Toast.makeText(getActivity(), R.string.data_folder, + Toast.LENGTH_SHORT).show(); + } + mPrefs.edit().putString(Config.pref_home, home_directory) + .commit(); + JNIdc.config(home_directory); + new LocateThemes().execute(home_directory + "/themes"); + } + } + + public void beforeTextChanged(CharSequence s, int start, int count, int after) { + } + + public void onTextChanged(CharSequence s, int start, int before, int count) { + } + }); + + OnCheckedChangeListener reios_options = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_usereios, isChecked).commit(); + } + }; + CompoundButton reios_opt = (CompoundButton) getView().findViewById( + R.id.reios_option); + reios_opt.setChecked(mPrefs.getBoolean(Config.pref_usereios, false)); + reios_opt.setOnCheckedChangeListener(reios_options); + + OnCheckedChangeListener details_options = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_gamedetails, isChecked).commit(); + if (!isChecked) { + File dir = new File(getActivity().getExternalFilesDir(null), "images"); + for (File file : dir.listFiles()) { + if (!file.isDirectory()) { + file.delete(); + } + } + } + } + }; + CompoundButton details_opt = (CompoundButton) getView().findViewById( + R.id.details_option); + details_opt.setChecked(mPrefs.getBoolean(Config.pref_gamedetails, false)); + details_opt.setOnCheckedChangeListener(details_options); + + gameBrowse = (Button) getView().findViewById(R.id.browse_game_path); + + final EditText editGames = (EditText) getView().findViewById( + R.id.game_path); + game_directory = mPrefs.getString(Config.pref_games, game_directory); + editGames.setText(game_directory); + + gameBrowse.setOnClickListener(new View.OnClickListener() { + public void onClick(View view) { + mPrefs.edit().remove(Config.pref_games).commit(); + if (editBrowse.getText() != null) { + game_directory = editGames.getText().toString(); + //mPrefs.edit().putString("game_directory", game_directory).commit(); + } + hideSoftKeyBoard(); + mCallback.onMainBrowseSelected(game_directory, true); + } + }); + + editGames.addTextChangedListener(new TextWatcher() { + public void afterTextChanged(Editable s) { + if (editBrowse.getText() != null) { + game_directory = editGames.getText().toString(); + mPrefs.edit().putString(Config.pref_games, game_directory) + .commit(); + } + } + + public void beforeTextChanged(CharSequence s, int start, int count, int after) { + } + + public void onTextChanged(CharSequence s, int start, int before, int count) { + } + }); + + String[] bios = getResources().getStringArray(R.array.bios); + codes = getResources().getStringArray(R.array.bioscode); + Spinner bios_spnr = (Spinner) getView().findViewById( + R.id.bios_spinner); + ArrayAdapter biosAdapter = new ArrayAdapter( + getActivity(), android.R.layout.simple_spinner_item, bios); + biosAdapter + .setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + bios_spnr.setAdapter(biosAdapter); + String region = mPrefs.getString("localized", codes[4]); + bios_spnr.setSelection(biosAdapter.getPosition(region), true); + bios_spnr.setOnItemSelectedListener(new OnItemSelectedListener() { + + public void onItemSelected(AdapterView parent, View view, + int pos, long id) { + flashBios(codes[pos]); + } + + public void onNothingSelected(AdapterView arg0) { + + } + + }); + + OnCheckedChangeListener native_options = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_nativeact, isChecked).commit(); + Config.nativeact = isChecked; + } + }; + CompoundButton native_opt = (CompoundButton) getView().findViewById( + R.id.native_option); + native_opt.setChecked(Config.nativeact); + native_opt.setOnCheckedChangeListener(native_options); + + OnCheckedChangeListener dynarec_options = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_dynarecopt, isChecked).commit(); + Config.dynarecopt = isChecked; + } + }; + CompoundButton dynarec_opt = (CompoundButton) getView().findViewById( + R.id.dynarec_option); + dynarec_opt.setChecked(Config.dynarecopt); + dynarec_opt.setOnCheckedChangeListener(dynarec_options); + + OnCheckedChangeListener unstable_option = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_unstable, isChecked).commit(); + Config.unstableopt = isChecked; + } + }; + CompoundButton unstable_opt = (CompoundButton) getView().findViewById( + R.id.unstable_option); + if (Config.unstableopt) { + unstable_opt.setChecked(true); + } else { + unstable_opt.setChecked(false); + } + unstable_opt.setOnCheckedChangeListener(unstable_option); + + String[] cables = getResources().getStringArray( + R.array.cable); + Spinner cable_spnr = (Spinner) getView().findViewById( + R.id.cable_spinner); + ArrayAdapter cableAdapter = new ArrayAdapter( + getActivity(), R.layout.spinner_selected, cables); + cableAdapter + .setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + cable_spnr.setAdapter(cableAdapter); + + cable_spnr.setSelection(Config.cable - 1, true); + + cable_spnr.setOnItemSelectedListener(new OnItemSelectedListener() { + + public void onItemSelected(AdapterView parent, View view, + int pos, long id) { + mPrefs.edit().putInt(Config.pref_cable, pos + 1).commit(); + Config.cable = pos + 1; + } + + public void onNothingSelected(AdapterView arg0) { + + } + + }); + +// String[] regions = ArrayUtils.remove(parentActivity.getResources() +// .getStringArray(R.array.region), 4); + String[] regions = getResources() + .getStringArray(R.array.region); + Spinner region_spnr = (Spinner) getView().findViewById( + R.id.region_spinner); + ArrayAdapter regionAdapter = new ArrayAdapter( + getActivity(), R.layout.spinner_selected, regions); + regionAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + region_spnr.setAdapter(regionAdapter); + region_spnr.setSelection(Config.dcregion, true); + region_spnr.setOnItemSelectedListener(new OnItemSelectedListener() { + public void onItemSelected(AdapterView parent, View view, int pos, long id) { + mPrefs.edit().putInt(Config.pref_dcregion, pos).commit(); + Config.dcregion = pos; + + } + + public void onNothingSelected(AdapterView arg0) { + + } + }); + + String[] broadcasts = getResources().getStringArray(R.array.broadcast); + Spinner broadcast_spnr = (Spinner) getView().findViewById(R.id.broadcast_spinner); + ArrayAdapter broadcastAdapter = new ArrayAdapter( + getActivity(), R.layout.spinner_selected, broadcasts); + broadcastAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + broadcast_spnr.setAdapter(broadcastAdapter); + + int select = 0; + String cast = String.valueOf(Config.broadcast); + for (int i = 0; i < broadcasts.length; i++) { + if (broadcasts[i].startsWith(cast + " - ")) + select = i; + } + + broadcast_spnr.setSelection(select, true); + broadcast_spnr.setOnItemSelectedListener(new OnItemSelectedListener() { + + public void onItemSelected(AdapterView parent, View view, int pos, long id) { + String item = parent.getItemAtPosition(pos).toString(); + String selection = item.substring(0, item.indexOf(" - ")); + mPrefs.edit() + .putInt(Config.pref_broadcast, Integer.parseInt(selection)) + .commit(); + Config.broadcast = Integer.parseInt(selection); + + } + + public void onNothingSelected(AdapterView arg0) { + + } + }); + + OnCheckedChangeListener limitfps_option = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_limitfps, isChecked).commit(); + Config.limitfps = isChecked; + } + }; + CompoundButton limit_fps = (CompoundButton) getView().findViewById(R.id.limitfps_option); + limit_fps.setChecked(Config.limitfps); + limit_fps.setOnCheckedChangeListener(limitfps_option); + + OnCheckedChangeListener mipmaps_option = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_mipmaps, isChecked).commit(); + Config.mipmaps = isChecked; + } + }; + CompoundButton mipmap_opt = (CompoundButton) getView().findViewById(R.id.mipmaps_option); + mipmap_opt.setChecked(Config.mipmaps); + mipmap_opt.setOnCheckedChangeListener(mipmaps_option); + + OnCheckedChangeListener full_screen = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_widescreen, isChecked).commit(); + Config.widescreen = isChecked; + } + }; + CompoundButton stretch_view = (CompoundButton) getView().findViewById(R.id.stretch_option); + stretch_view.setChecked(Config.widescreen); + stretch_view.setOnCheckedChangeListener(full_screen); + + final EditText mainFrames = (EditText) getView().findViewById(R.id.current_frames); + mainFrames.setText(String.valueOf(Config.frameskip)); + + final SeekBar frameSeek = (SeekBar) getView().findViewById(R.id.frame_seekbar); + frameSeek.setProgress(Config.frameskip); + frameSeek.setIndeterminate(false); + frameSeek.setOnSeekBarChangeListener(new OnSeekBarChangeListener() { + public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { + mainFrames.setText(String.valueOf(progress)); + } + + public void onStartTrackingTouch(SeekBar seekBar) { + // TODO Auto-generated method stub + } + + public void onStopTrackingTouch(SeekBar seekBar) { + int progress = seekBar.getProgress(); + mPrefs.edit().putInt(Config.pref_frameskip, progress).commit(); + Config.frameskip = progress; + } + }); + mainFrames.addTextChangedListener(new TextWatcher() { + public void afterTextChanged(Editable s) { + String frameText = mainFrames.getText().toString(); + if (frameText != null) { + int frames = Integer.parseInt(frameText); + frameSeek.setProgress(frames); + mPrefs.edit().putInt(Config.pref_frameskip, frames).commit(); + Config.frameskip = frames; + } + } + + public void beforeTextChanged(CharSequence s, int start, int count, int after) { + } + + public void onTextChanged(CharSequence s, int start, int before, int count) { + } + }); + + OnCheckedChangeListener pvr_rendering = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_pvrrender, isChecked).commit(); + Config.pvrrender = isChecked; + } + }; + CompoundButton pvr_render = (CompoundButton) getView().findViewById(R.id.render_option); + pvr_render.setChecked(Config.pvrrender); + pvr_render.setOnCheckedChangeListener(pvr_rendering); + + OnCheckedChangeListener synchronous = new OnCheckedChangeListener() { + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_syncedrender, isChecked).commit(); + Config.syncedrender = isChecked; + } + }; + CompoundButton synced_render = (CompoundButton) getView().findViewById(R.id.syncrender_option); + synced_render.setChecked(Config.syncedrender); + synced_render.setOnCheckedChangeListener(synchronous); + + final EditText cheatEdit = (EditText) getView().findViewById(R.id.cheat_disk); + String disk = Config.cheatdisk; + if (disk != null && disk.contains("/")) { + cheatEdit.setText(disk.substring(disk.lastIndexOf("/"), + disk.length())); + } else { + cheatEdit.setText(disk); + } + + cheatEdit.addTextChangedListener(new TextWatcher() { + public void afterTextChanged(Editable s) { + if (cheatEdit.getText() != null) { + String disk = cheatEdit.getText().toString(); + if (disk != null && disk.contains("/")) { + cheatEdit.setText(disk.substring(disk.lastIndexOf("/"), + disk.length())); + } else { + cheatEdit.setText(disk); + } + mPrefs.edit().putString(Config.pref_cheatdisk, disk).commit(); + Config.cheatdisk = disk; + } + } + + public void beforeTextChanged(CharSequence s, int start, int count, int after) { + } + + public void onTextChanged(CharSequence s, int start, int before, int count) { + } + }); + + final CompoundButton fps_opt = (CompoundButton) getView().findViewById(R.id.fps_option); + OnCheckedChangeListener fps_options = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, + boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_showfps, isChecked).commit(); + } + }; + boolean counter = mPrefs.getBoolean(Config.pref_showfps, false); + fps_opt.setChecked(counter); + fps_opt.setOnCheckedChangeListener(fps_options); + + final CompoundButton force_gpu_opt = (CompoundButton) getView().findViewById(R.id.force_gpu_option); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) { + OnCheckedChangeListener force_gpu_options = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_forcegpu, isChecked).commit(); + } + }; + boolean enhanced = mPrefs.getBoolean(Config.pref_forcegpu, true); + force_gpu_opt.setChecked(enhanced); + force_gpu_opt.setOnCheckedChangeListener(force_gpu_options); + } else { + force_gpu_opt.setEnabled(false); + } + + CompoundButton force_software_opt = (CompoundButton) getView().findViewById( + R.id.software_option); + OnCheckedChangeListener force_software = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + mPrefs.edit() + .putInt(Config.pref_rendertype, + isChecked ? GL2JNIView.LAYER_TYPE_SOFTWARE + : GL2JNIView.LAYER_TYPE_HARDWARE) + .commit(); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { + if (isChecked) { + force_gpu_opt.setEnabled(false); + mPrefs.edit().putBoolean(Config.pref_forcegpu, false).commit(); + } else { + force_gpu_opt.setEnabled(true); + } + } + } + }; + int software = mPrefs.getInt(Config.pref_rendertype, GL2JNIView.LAYER_TYPE_HARDWARE); + force_software_opt.setChecked(software == GL2JNIView.LAYER_TYPE_SOFTWARE); + force_software_opt.setOnCheckedChangeListener(force_software); + + CompoundButton sound_opt = (CompoundButton) getView().findViewById(R.id.sound_option); + OnCheckedChangeListener emu_sound = new OnCheckedChangeListener() { + + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + mPrefs.edit().putBoolean(Config.pref_nosound, isChecked).commit(); + Config.nosound = isChecked; + } + }; + boolean sound = mPrefs.getBoolean(Config.pref_nosound, false); + sound_opt.setChecked(sound); + sound_opt.setOnCheckedChangeListener(emu_sound); + + String[] depths = getResources().getStringArray(R.array.depth); + + Spinner depth_spnr = (Spinner) getView().findViewById(R.id.depth_spinner); + ArrayAdapter depthAdapter = new ArrayAdapter( + getActivity(), R.layout.spinner_selected, depths); + depthAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + depth_spnr.setAdapter(depthAdapter); + + String depth = String.valueOf(mPrefs.getInt(Config.pref_renderdepth, 24)); + depth_spnr.setSelection(depthAdapter.getPosition(depth), true); + + depth_spnr.setOnItemSelectedListener(new OnItemSelectedListener() { + + public void onItemSelected(AdapterView parent, View view, int pos, long id) { + int render = Integer.parseInt(parent.getItemAtPosition(pos).toString()); + mPrefs.edit().putInt(Config.pref_renderdepth, render).commit(); + } + + public void onNothingSelected(AdapterView arg0) { + + } + }); + } + + private final class LocateThemes extends AsyncTask> { + @Override + protected List doInBackground(String... paths) { + File storage = new File(paths[0]); + String[] mediaTypes = getResources().getStringArray(R.array.themes); + FilenameFilter[] filter = new FilenameFilter[mediaTypes.length]; + int i = 0; + for (final String type : mediaTypes) { + filter[i] = new FilenameFilter() { + public boolean accept(File dir, String name) { + if (dir.getName().startsWith(".") + || name.startsWith(".")) { + return false; + } else { + return StringUtils.endsWithIgnoreCase(name, "." + + type); + } + } + }; + i++; + } + FileUtils fileUtils = new FileUtils(); + Collection files = fileUtils.listFiles(storage, filter, 0); + return (List) files; + } + + @Override + protected void onPostExecute(List items) { + if (items != null && !items.isEmpty()) { + String[] themes = new String[items.size() + 1]; + for (int i = 0; i < items.size(); i ++) { + themes[i] = items.get(i).getName(); + } + themes[items.size()] = "None"; + ArrayAdapter themeAdapter = new ArrayAdapter( + getActivity(), android.R.layout.simple_spinner_item, themes); + themeAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + mSpnrThemes.setAdapter(themeAdapter); + mSpnrThemes.setOnItemSelectedListener(new OnItemSelectedListener() { + @Override + public void onItemSelected(AdapterView parentView, View selectedItemView, int position, long id) { + String theme = String.valueOf(parentView.getItemAtPosition(position)); + if (theme.equals("None")) { + mPrefs.edit().remove(Config.pref_theme).commit(); + } else { + String theme_path = home_directory + "/themes/" + theme; + mPrefs.edit().putString(Config.pref_theme, theme_path).commit(); + } + } + @Override + public void onNothingSelected(AdapterView parentView) { + + } + }); + } else { + mSpnrThemes.setEnabled(false); + } + } + } + + private void hideSoftKeyBoard() { + InputMethodManager iMm = (InputMethodManager) getActivity() + .getSystemService(Context.INPUT_METHOD_SERVICE); + if (iMm.isAcceptingText()) { + iMm.hideSoftInputFromWindow(getActivity().getCurrentFocus() + .getWindowToken(), 0); + } + } + + private void flashBios(String localized) { + File local = new File(home_directory, "data/dc_flash[" + localized + + "].bin"); + File flash = new File(home_directory, "data/dc_flash.bin"); + + if (local.exists()) { + if (flash.exists()) { + flash.delete(); + } + local.renameTo(flash); + } + mPrefs.edit().putString("localized", localized).commit(); + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/GenerateLogs.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/GenerateLogs.java new file mode 100644 index 000000000..2703eba8e --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/GenerateLogs.java @@ -0,0 +1,255 @@ +package com.reicast.emulator.debug; + +import java.io.BufferedReader; +import java.io.BufferedWriter; +import java.io.File; +import java.io.FileInputStream; +import java.io.FileWriter; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; + +import android.content.Context; +import android.os.AsyncTask; +import android.os.Build; +import android.widget.Toast; + +import com.reicast.emulator.R; + +public class GenerateLogs extends AsyncTask { + + public static final String build_model = android.os.Build.MODEL; + public static final String build_device = android.os.Build.DEVICE; + public static final String build_board = android.os.Build.BOARD; + public static final int build_sdk = android.os.Build.VERSION.SDK_INT; + + public static final String DN = "Donut"; + public static final String EC = "Eclair"; + public static final String FR = "Froyo"; + public static final String GB = "Gingerbread"; + public static final String HC = "Honeycomb"; + public static final String IC = "Ice Cream Sandwich"; + public static final String JB = "JellyBean"; + public static final String KK = "KitKat"; + public static final String LP = "L Preview"; + public static final String LL = "Lollipop"; + public static final String NL = "New / No Label"; + public static final String NF = "Not Found"; + + private String unHandledIOE; + + private Context mContext; + private String currentTime; + + public GenerateLogs(Context mContext) { + this.mContext = mContext; + this.currentTime = String.valueOf(System.currentTimeMillis()); + } + + /** + * Obtain the specific parameters of the current device + * + */ + private String discoverCPUData() { + String s = "MODEL: " + Build.MODEL; + s += "\r\n"; + s += "DEVICE: " + build_device; + s += "\r\n"; + s += "BOARD: " + build_board; + s += "\r\n"; + if (String.valueOf(build_sdk) != null) { + String build_version = NF; + if (String.valueOf(build_sdk).equals("L")) { + build_version = "LP"; + } else if (build_sdk >= 4 && build_sdk < 7) { + build_version = DN; + } else if (build_sdk == 7) { + build_version = EC; + } else if (build_sdk == 8) { + build_version = FR; + } else if (build_sdk >= 9 && build_sdk < 11) { + build_version = GB; + } else if (build_sdk >= 11 && build_sdk < 14) { + build_version = HC; + } else if (build_sdk >= 14 && build_sdk < 16) { + build_version = IC; + } else if (build_sdk >= 16 && build_sdk < 19) { + build_version = JB; + } else if (build_sdk >= 19 && build_sdk < 21) { + build_version = KK; + } else if (build_sdk >= 21 && build_sdk < 22) { + build_version = LL; + } else if (build_sdk >= 22) { + build_version = NL; + } + s += build_version + " (" + build_sdk + ")"; + } else { + String prop_build_version = "ro.build.version.release"; + String prop_sdk_version = "ro.build.version.sdk"; + String build_version = readOutput("/system/bin/getprop " + + prop_build_version); + String sdk_version = readOutput("/system/bin/getprop " + + prop_sdk_version); + s += build_version + " (" + sdk_version + ")"; + } + return s; + } + + /** + * Read the output of a shell command + * + * @param command + * The shell command being issued to the terminal + */ + public static String readOutput(String command) { + try { + Process p = Runtime.getRuntime().exec(command); + InputStream is = null; + if (p.waitFor() == 0) { + is = p.getInputStream(); + } else { + is = p.getErrorStream(); + } + BufferedReader br = new BufferedReader(new InputStreamReader(is), + 2048); + String line = br.readLine(); + br.close(); + return line; + } catch (Exception ex) { + return "ERROR: " + ex.getMessage(); + } + } + + public void setUnhandled(String unHandledIOE) { + this.unHandledIOE = unHandledIOE; + } + + @Override + protected String doInBackground(String... params) { + File logFile = new File(params[0], currentTime + ".txt"); + Process mLogcatProc = null; + BufferedReader reader = null; + final StringBuilder log = new StringBuilder(); + String separator = System.getProperty("line.separator"); + log.append(discoverCPUData()); + if (unHandledIOE != null) { + log.append(separator); + log.append(separator); + log.append("Unhandled Exceptions"); + log.append(separator); + log.append(separator); + log.append(unHandledIOE); + } + try { + mLogcatProc = Runtime.getRuntime().exec( + new String[] { "logcat", "-d", "AndroidRuntime:E *:S" }); + reader = new BufferedReader(new InputStreamReader( + mLogcatProc.getInputStream())); + String line; + log.append(separator); + log.append(separator); + log.append("AndroidRuntime Output"); + log.append(separator); + log.append(separator); + while ((line = reader.readLine()) != null) { + log.append(line); + log.append(separator); + } + reader.close(); + mLogcatProc = null; + reader = null; + int PID = android.os.Process.getUidForName("com.reicast.emulator"); + mLogcatProc = Runtime.getRuntime().exec( + new String[] { "logcat", "-d", "|", "grep " + PID }); + reader = new BufferedReader(new InputStreamReader( + mLogcatProc.getInputStream())); + log.append(separator); + log.append(separator); + log.append("Application Core Output"); + log.append(separator); + log.append(separator); + while ((line = reader.readLine()) != null) { + log.append(line); + log.append(separator); + } + reader.close(); + mLogcatProc = null; + reader = null; + mLogcatProc = Runtime.getRuntime().exec( + new String[] { "logcat", "-d", "reicast:V *:S" }); + reader = new BufferedReader(new InputStreamReader( + mLogcatProc.getInputStream())); + log.append(separator); + log.append(separator); + log.append("Native Interface Output"); + log.append(separator); + log.append(separator); + while ((line = reader.readLine()) != null) { + log.append(line); + log.append(separator); + } + reader.close(); + mLogcatProc = null; + reader = null; + mLogcatProc = Runtime.getRuntime().exec( + new String[] { "logcat", "-d", "GL2JNIView:E *:S" }); + reader = new BufferedReader(new InputStreamReader( + mLogcatProc.getInputStream())); + log.append(separator); + log.append(separator); + log.append("Open GLES View Output"); + log.append(separator); + log.append(separator); + while ((line = reader.readLine()) != null) { + log.append(line); + log.append(separator); + } + reader.close(); + mLogcatProc = null; + reader = null; + File memory = new File(mContext.getFilesDir(), "mem_alloc.txt"); + if (memory.exists()) { + log.append(separator); + log.append(separator); + log.append("Memory Allocation Table"); + log.append(separator); + log.append(separator); + FileInputStream fis = new FileInputStream(memory); + reader = new BufferedReader(new InputStreamReader(fis)); + while ((line = reader.readLine()) != null) { + log.append(line); + log.append(separator); + } + fis.close(); + fis = null; + reader.close(); + reader = null; + } + BufferedWriter writer = new BufferedWriter(new FileWriter(logFile)); + writer.write(log.toString()); + writer.flush(); + writer.close(); + return log.toString(); + } catch (IOException e) { + + } + return null; + } + + @Override + protected void onPostExecute(final String response) { + if (response != null && !response.equals(null)) { + Toast.makeText(mContext, mContext.getString(R.string.log_saved), + Toast.LENGTH_SHORT).show(); + Toast.makeText(mContext, mContext.getString(R.string.platform), + Toast.LENGTH_SHORT).show(); + UploadLogs mUploadLogs = new UploadLogs(mContext, currentTime); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { + mUploadLogs.executeOnExecutor( + AsyncTask.THREAD_POOL_EXECUTOR, response); + } else { + mUploadLogs.execute(response); + } + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/GitAdapter.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/GitAdapter.java new file mode 100644 index 000000000..60a20dabd --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/GitAdapter.java @@ -0,0 +1,174 @@ +package com.reicast.emulator.debug; + +import java.util.ArrayList; +import java.util.HashMap; + +import android.annotation.SuppressLint; +import android.annotation.TargetApi; +import android.app.Activity; +import android.app.AlertDialog; +import android.content.Context; +import android.content.DialogInterface; +import android.graphics.PorterDuff; +import android.os.Build; +import android.view.LayoutInflater; +import android.view.View; +import android.view.View.OnClickListener; +import android.view.ViewGroup; +import android.webkit.CookieManager; +import android.webkit.CookieSyncManager; +import android.webkit.WebSettings; +import android.webkit.WebSettings.PluginState; +import android.webkit.WebView; +import android.webkit.WebViewClient; +import android.widget.BaseAdapter; +import android.widget.ImageView; +import android.widget.RelativeLayout; +import android.widget.TextView; + +import com.nostra13.universalimageloader.core.DisplayImageOptions; +import com.nostra13.universalimageloader.core.ImageLoader; +import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; +import com.nostra13.universalimageloader.core.assist.ImageScaleType; +import com.reicast.emulator.R; + +public class GitAdapter extends BaseAdapter { + + private static Activity activity; + private ArrayList> data; + private LayoutInflater inflater = null; + private DisplayImageOptions options; + + public GitAdapter(Activity a, ArrayList> d) { + activity = a; + this.data = d; + this.inflater = (LayoutInflater) activity + .getSystemService(Context.LAYOUT_INFLATER_SERVICE); + ImageLoaderConfiguration configicon = new ImageLoaderConfiguration.Builder( + activity).memoryCacheExtraOptions(96, 96).build(); + this.options = new DisplayImageOptions.Builder() + .showStubImage(R.drawable.ic_github) + .showImageForEmptyUri(R.drawable.ic_github) + .imageScaleType(ImageScaleType.EXACTLY_STRETCHED).build(); + + ImageLoader.getInstance().init(configicon); + + } + + public int getCount() { + return this.data.size(); + } + + public Object getItem(int position) { + return position; + } + + public long getItemId(int position) { + return position; + } + + public View getView(final int position, View convertView, ViewGroup parent) { + View vi = convertView; + if (convertView == null) + vi = this.inflater.inflate(R.layout.change_item, null); + TextView dateText = (TextView) vi.findViewById(R.id.date); + TextView committerText = (TextView) vi.findViewById(R.id.committer); + TextView titleText = (TextView) vi.findViewById(R.id.title); + ImageView avatarIcon = (ImageView) vi.findViewById(R.id.avatar); + + final HashMap commit = this.data.get(position); + final String date = commit.get("Date"); + final String committer = commit.get("Committer"); + final String title = commit.get("Title"); + final String message = commit.get("Message"); + final String sha = commit.get("Sha"); + final String url = commit.get("Url"); + final String author = commit.get("Author"); + final String avatar = commit.get("Avatar"); + final String current = commit.get("Build"); + + RelativeLayout item = (RelativeLayout) vi.findViewById(R.id.change); + if (current != null && !current.equals("") && current.equals(sha)) { + item.getBackground().setColorFilter(0xFF00FF00, + PorterDuff.Mode.MULTIPLY); + } else { + item.getBackground().setColorFilter(null); + } + + dateText.setText(date); + committerText.setText(committer); + titleText.setText(title); + ImageLoader.getInstance() + .displayImage(avatar, avatarIcon, this.options); + + vi.setOnClickListener(new OnClickListener() { + public void onClick(View v) { + System.gc(); + String output = title + "\n\n" + message + "\n\n" + " - " + author; + displayCommit(sha, output, url, v.getContext()); + } + }); + // Handle clicking individual item from list + + return vi; + } + + private void displayCommit(final String sha, String message, String url, + Context context) { + final AlertDialog.Builder builder = new AlertDialog.Builder(context); + builder.setCancelable(true); + builder.setTitle(sha.substring(0,7)); + builder.setMessage(message); + LayoutInflater infalter = LayoutInflater.from(context); + final View popWebView = infalter.inflate(R.layout.webview, null); + WebView mWebView = (WebView) popWebView.findViewById(R.id.webframe); + mWebView = configureWebview(url, context, mWebView); + builder.setView(popWebView); + builder.setPositiveButton("Close", + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int which) { + dialog.dismiss(); + return; + } + }); + builder.create().show(); + } + + @TargetApi(Build.VERSION_CODES.HONEYCOMB) + @SuppressLint("SetJavaScriptEnabled") + @SuppressWarnings("deprecation") + private WebView configureWebview(String url, Context context, + WebView mWebView) { + mWebView.getSettings().setSupportZoom(true); + mWebView.getSettings().setBuiltInZoomControls(true); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { + mWebView.getSettings().setDisplayZoomControls(false); + } + mWebView.setInitialScale(1); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ECLAIR) { + mWebView.getSettings().setUseWideViewPort(true); + } + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ECLAIR_MR1) { + mWebView.getSettings().setLoadWithOverviewMode(true); + } + mWebView.getSettings().setJavaScriptEnabled(true); + mWebView.getSettings().setPluginState(PluginState.ON); + mWebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE); + mWebView.clearHistory(); + mWebView.clearFormData(); + mWebView.clearCache(true); + CookieSyncManager.createInstance(context); + CookieManager cookieManager = CookieManager.getInstance(); + cookieManager.removeAllCookie(); + CookieSyncManager.getInstance().stopSync(); + mWebView.setWebViewClient(new WebViewClient() { + @Override + public boolean shouldOverrideUrlLoading(WebView view, String url) { + view.loadUrl(url); + return true; + } + }); + mWebView.loadUrl(url); + return mWebView; + } +} \ No newline at end of file diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/UploadLogs.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/UploadLogs.java new file mode 100644 index 000000000..38f13f60a --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/debug/UploadLogs.java @@ -0,0 +1,140 @@ +package com.reicast.emulator.debug; + +import java.io.IOException; +import java.net.MalformedURLException; +import java.util.ArrayList; + +import org.apache.http.Header; +import org.apache.http.HttpResponse; +import org.apache.http.HttpStatus; +import org.apache.http.NameValuePair; +import org.apache.http.client.HttpClient; +import org.apache.http.client.entity.UrlEncodedFormEntity; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.impl.client.DefaultHttpClient; +import org.apache.http.message.BasicNameValuePair; +import org.apache.http.util.EntityUtils; + +import android.annotation.SuppressLint; +import android.annotation.TargetApi; +import android.content.Context; +import android.content.Intent; +import android.net.Uri; +import android.os.AsyncTask; +import android.os.Build; +import android.os.StrictMode; + +import com.reicast.emulator.config.Config; + +/** + * Upload the specialized logcat to reicast issues + * + * @param mContext + * The context this method will be executed from + * @param currentTime + * The system time at which the log was made + */ +public class UploadLogs extends AsyncTask { + + private String currentTime; + private String logUrl; + private Context mContext; + + public UploadLogs(Context mContext, String currentTime) { + this.mContext = mContext; + this.currentTime = currentTime; + } + + private void RedirectSubmission(Header[] headers, String content) { + UploadLogs mUploadLogs = new UploadLogs(mContext, + currentTime); + mUploadLogs.setPostUrl(headers[headers.length - 1] + .getValue()); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { + mUploadLogs.executeOnExecutor( + AsyncTask.THREAD_POOL_EXECUTOR, content); + } else { + mUploadLogs.execute(content); + } + } + + /** + * Set the URL for where the log will be uploaded + * + * @param logUrl + * The URL of the log upload server + */ + public void setPostUrl(String logUrl) { + this.logUrl = logUrl; + } + + @SuppressLint("NewApi") + protected void onPreExecute() { + if (logUrl == null || logUrl.equals(null)) { + logUrl = Config.log_url; + } + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { + StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder() + .permitAll().build(); + StrictMode.setThreadPolicy(policy); + } + } + + @TargetApi(Build.VERSION_CODES.HONEYCOMB) + @Override + protected Object doInBackground(String... params) { + HttpClient client = new DefaultHttpClient(); + HttpPost post = new HttpPost(logUrl); + try { + ArrayList mPairs = new ArrayList(); + mPairs.add(new BasicNameValuePair("name", currentTime)); + mPairs.add(new BasicNameValuePair("issue", params[0])); + post.setEntity(new UrlEncodedFormEntity(mPairs)); + HttpResponse getResponse = client.execute(post); + final int statusCode = getResponse.getStatusLine().getStatusCode(); + if (statusCode != HttpStatus.SC_OK) { + Header[] headers = getResponse.getHeaders("Location"); + if (headers != null && headers.length != 0) { + RedirectSubmission(headers, params[0]); + } else { + return null; + } + } else { + return EntityUtils.toString(getResponse.getEntity()); + } + } catch (MalformedURLException e) { + e.printStackTrace(); + post.abort(); + } catch (IOException e) { + e.printStackTrace(); + post.abort(); + } catch (Exception e) { + e.printStackTrace(); + post.abort(); + } + return null; + } + + @TargetApi(Build.VERSION_CODES.HONEYCOMB) + @SuppressWarnings("deprecation") + @Override + protected void onPostExecute(Object response) { + if (response != null && !response.equals(null)) { + String logLink = Config.report_url + currentTime + ".txt"; + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { + android.content.ClipboardManager clipboard = (android.content.ClipboardManager) mContext + .getSystemService(Context.CLIPBOARD_SERVICE); + android.content.ClipData clip = android.content.ClipData + .newPlainText("logcat", logLink); + clipboard.setPrimaryClip(clip); + } else { + android.text.ClipboardManager clipboard = (android.text.ClipboardManager) mContext + .getSystemService(Context.CLIPBOARD_SERVICE); + clipboard.setText(logLink); + } + Intent browserIntent = new Intent(Intent.ACTION_VIEW, + Uri.parse(Config.git_issues)); + mContext.startActivity(browserIntent); + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/emu/GL2JNIView.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/emu/GL2JNIView.java new file mode 100644 index 000000000..051f57e1f --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/emu/GL2JNIView.java @@ -0,0 +1,743 @@ +package com.reicast.emulator.emu; + + +import java.io.UnsupportedEncodingException; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; + +import javax.microedition.khronos.egl.EGLConfig; +import javax.microedition.khronos.opengles.GL10; + +import android.annotation.TargetApi; +import android.app.Activity; +import android.content.Context; +import android.content.SharedPreferences; +import android.content.res.Configuration; +import android.graphics.Paint; +import android.graphics.PixelFormat; +import android.media.AudioFormat; +import android.media.AudioManager; +import android.media.AudioTrack; +import android.opengl.GLSurfaceView; +import android.os.Build; +import android.os.Handler; +import android.os.Vibrator; +import android.preference.PreferenceManager; +import android.util.AttributeSet; +import android.util.DisplayMetrics; +import android.util.Log; +import android.view.MotionEvent; +import android.view.ScaleGestureDetector; +import android.view.ScaleGestureDetector.SimpleOnScaleGestureListener; +import android.view.View; +import android.view.WindowManager; +import android.widget.Toast; + +import com.android.util.FileUtils; +import com.reicast.emulator.GL2JNIActivity; +import com.reicast.emulator.GL2JNINative; +import com.reicast.emulator.MainActivity; +import com.reicast.emulator.R; +import com.reicast.emulator.config.Config; +import com.reicast.emulator.emu.OnScreenMenu.FpsPopup; +import com.reicast.emulator.periph.VJoy; + + +/** + * A simple GLSurfaceView sub-class that demonstrate how to perform + * OpenGL ES 2.0 rendering into a GL Surface. Note the following important + * details: + * + * - The class must use a custom context factory to enable 2.0 rendering. + * See ContextFactory class definition below. + * + * - The class must use a custom EGLConfigChooser to be able to select + * an EGLConfig that supports 2.0. This is done by providing a config + * specification to eglChooseConfig() that has the attribute + * EGL10.ELG_RENDERABLE_TYPE containing the EGL_OPENGL_ES2_BIT flag + * set. See ConfigChooser class definition below. + * + * - The class must select the surface's format, then choose an EGLConfig + * that matches it exactly (with regards to red/green/blue/alpha channels + * bit depths). Failure to do so would result in an EGL_BAD_MATCH error. + */ + +public class GL2JNIView extends GLSurfaceView +{ + public static final boolean DEBUG = false; + + public static final int LAYER_TYPE_SOFTWARE = 1; + public static final int LAYER_TYPE_HARDWARE = 2; + + private static String fileName; + //private AudioThread audioThread; + private EmuThread ethd; + private Handler handler = new Handler(); + + private static int sWidth; + private static int sHeight; + + Vibrator vib; + + private boolean editVjoyMode = false; + private int selectedVjoyElement = -1; + private ScaleGestureDetector scaleGestureDetector; + + public float[][] vjoy_d_custom; + + private static final float[][] vjoy = VJoy.baseVJoy(); + + Renderer rend; + + private boolean touchVibrationEnabled; + private int vibrationDuration; + Context context; + + public void restoreCustomVjoyValues(float[][] vjoy_d_cached) { + vjoy_d_custom = vjoy_d_cached; + VJoy.writeCustomVjoyValues(vjoy_d_cached, context); + + resetEditMode(); + requestLayout(); + } + + public void setFpsDisplay(FpsPopup fpsPop) { + rend.fpsPop = fpsPop; + } + + public GL2JNIView(Context context) { + super(context); + } + + public GL2JNIView(Context context, AttributeSet attrs) { + super(context, attrs); + } + + @TargetApi(Build.VERSION_CODES.HONEYCOMB) + public GL2JNIView(Context context, Config config, String newFileName, + boolean translucent, int depth, int stencil, boolean editVjoyMode) { + super(context); + this.context = context; + this.editVjoyMode = editVjoyMode; + setKeepScreenOn(true); + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + setOnSystemUiVisibilityChangeListener (new OnSystemUiVisibilityChangeListener() { + public void onSystemUiVisibilityChange(int visibility) { + if ((visibility & SYSTEM_UI_FLAG_FULLSCREEN) == 0) { + GL2JNIView.this.setSystemUiVisibility( + SYSTEM_UI_FLAG_IMMERSIVE_STICKY + | SYSTEM_UI_FLAG_FULLSCREEN + | SYSTEM_UI_FLAG_HIDE_NAVIGATION); + requestLayout(); + } + } + }); + } + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { + setPreserveEGLContextOnPause(true); + } + + vib=(Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE); + + DisplayMetrics metrics = new DisplayMetrics(); + //((Activity) context).getWindowManager().getDefaultDisplay().getMetrics(metrics); + ((WindowManager) context.getSystemService(Context.WINDOW_SERVICE)) + .getDefaultDisplay().getMetrics(metrics); + final float scale = context.getResources().getDisplayMetrics().density; + sWidth = (int) (metrics.widthPixels * scale + 0.5f); + sHeight = (int) (metrics.heightPixels * scale + 0.5f); + + SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); + + ethd = new EmuThread(!Config.nosound); + + touchVibrationEnabled = prefs.getBoolean(Config.pref_touchvibe, true); + vibrationDuration = prefs.getInt(Config.pref_vibrationDuration, 20); + + int renderType = prefs.getInt(Config.pref_rendertype, LAYER_TYPE_HARDWARE); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { + this.setLayerType(renderType, null); + } else { + try { + Method setLayerType = this.getClass().getMethod( + "setLayerType", new Class[] { int.class, Paint.class }); + if (setLayerType != null) + setLayerType.invoke(this, new Object[] { renderType, null }); + } catch (NoSuchMethodException e) { + } catch (IllegalArgumentException e) { + } catch (IllegalAccessException e) { + } catch (InvocationTargetException e) { + } + } + +// config.loadConfigurationPrefs(); + + vjoy_d_custom = VJoy.readCustomVjoyValues(context); + + scaleGestureDetector = new ScaleGestureDetector(context, new OscOnScaleGestureListener()); + + // This is the game we are going to run + fileName = newFileName; + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && Config.nativeact) { + if (GL2JNINative.syms != null) + JNIdc.data(1, GL2JNINative.syms); + } else { + if (GL2JNIActivity.syms != null) + JNIdc.data(1, GL2JNIActivity.syms); + } + + JNIdc.init(fileName); + + // By default, GLSurfaceView() creates a RGB_565 opaque surface. + // If we want a translucent one, we should change the surface's + // format here, using PixelFormat.TRANSLUCENT for GL Surfaces + // is interpreted as any 32-bit surface with alpha by SurfaceFlinger. + if(translucent) this.getHolder().setFormat(PixelFormat.TRANSLUCENT); + + if (prefs.getBoolean(Config.pref_forcegpu, false)) { + setEGLContextFactory(new GLCFactory6.ContextFactory()); + setEGLConfigChooser( + translucent? + new GLCFactory6.ConfigChooser(8, 8, 8, 8, depth, stencil) + : new GLCFactory6.ConfigChooser(5, 6, 5, 0, depth, stencil) + ); + } else { + // Setup the context factory for 2.0 rendering. + // See ContextFactory class definition below + setEGLContextFactory(new GLCFactory.ContextFactory()); + + // We need to choose an EGLConfig that matches the format of + // our surface exactly. This is going to be done in our + // custom config chooser. See ConfigChooser class definition + // below. + setEGLConfigChooser( + translucent? + new GLCFactory.ConfigChooser(8, 8, 8, 8, depth, stencil) + : new GLCFactory.ConfigChooser(5, 6, 5, 0, depth, stencil) + ); + } + + // Set the renderer responsible for frame rendering + setRenderer(rend=new Renderer(this)); + + pushInput(); //initializes controller codes + + ethd.start(); + + } + + public GLSurfaceView.Renderer getRenderer() + { + return rend; + } + + private void reset_analog() + { + + int j=11; + vjoy[j+1][0]=vjoy[j][0]+vjoy[j][2]/2-vjoy[j+1][2]/2; + vjoy[j+1][1]=vjoy[j][1]+vjoy[j][3]/2-vjoy[j+1][3]/2; + JNIdc.vjoy(j+1, vjoy[j+1][0], vjoy[j+1][1], vjoy[j+1][2], vjoy[j+1][3]); + } + + int get_anal(int j, int axis) + { + return (int) (((vjoy[j+1][axis]+vjoy[j+1][axis+2]/2) - vjoy[j][axis] - vjoy[j][axis+2]/2)*254/vjoy[j][axis+2]); + } + + float vbase(float p, float m, float scl) + { + return (int) ( m - (m -p)*scl); + } + + float vbase(float p, float scl) + { + return (int) (p*scl ); + } + + public boolean isTablet() { + return (getContext().getResources().getConfiguration().screenLayout + & Configuration.SCREENLAYOUT_SIZE_MASK) + >= Configuration.SCREENLAYOUT_SIZE_LARGE; + } + + @Override + protected void onLayout(boolean changed, int left, int top, int right, int bottom) + { + super.onLayout(changed, left, top, right, bottom); + //dcpx/cm = dcpx/px * px/cm + float magic = isTablet() ? 0.8f : 0.7f; + float scl=480.0f/getHeight() * getContext().getResources().getDisplayMetrics().density * magic; + float scl_dc=getHeight()/480.0f; + float tx = ((getWidth()-640.0f*scl_dc)/2)/scl_dc; + + float a_x = -tx+ 24*scl; + float a_y=- 24*scl; + + float[][] vjoy_d = VJoy.getVjoy_d(vjoy_d_custom); + + for(int i=0;ivjoy[j][0] && x<=(vjoy[j][0]+vjoy[j][2])) + { + /* + //Disable pressure sensitive R/L + //Doesn't really work properly + + int pre=(int)(event.getPressure(i)*255); + if (pre>20) + { + pre-=20; + pre*=7; + } + if (pre>255) pre=255; + */ + + int pre = 255; + + if(y>vjoy[j][1] && y<=(vjoy[j][1]+vjoy[j][3])) + { + if (vjoy[j][4]>=-2) + { + if (vjoy[j][5]==0) + if (!editVjoyMode && touchVibrationEnabled) + vib.vibrate(vibrationDuration); + vjoy[j][5]=2; + } + + + if(vjoy[j][4]==-3) + { + if (editVjoyMode) { + selectedVjoyElement = 5; // Analog + resetEditMode(); + } else { + vjoy[j+1][0]=x-vjoy[j+1][2]/2; + vjoy[j+1][1]=y-vjoy[j+1][3]/2; + + JNIdc.vjoy(j+1, vjoy[j+1][0], vjoy[j+1][1] , vjoy[j+1][2], vjoy[j+1][3]); + anal_id=event.getPointerId(i); + } + } + else if (vjoy[j][4]==-4); + else if(vjoy[j][4]==-1) { + if (editVjoyMode) { + selectedVjoyElement = 3; // Left Trigger + resetEditMode(); + } else { + lt[0]=pre; + lt_id=event.getPointerId(i); + } + } + else if(vjoy[j][4]==-2) { + if (editVjoyMode) { + selectedVjoyElement = 4; // Right Trigger + resetEditMode(); + } else{ + rt[0]=pre; + rt_id=event.getPointerId(i); + } + } + else { + if (editVjoyMode) { + selectedVjoyElement = getElementIdFromButtonId(j); + resetEditMode(); + } else + rv&=~(int)vjoy[j][4]; + } + } + } + } + } + else + { + if (x(vjoy[11][0]+vjoy[11][2])) + x=vjoy[11][0]+vjoy[11][2]; + + if (y(vjoy[11][1]+vjoy[11][3])) + y=vjoy[11][1]+vjoy[11][3]; + + int j=11; + vjoy[j+1][0]=x-vjoy[j+1][2]/2; + vjoy[j+1][1]=y-vjoy[j+1][3]/2; + + JNIdc.vjoy(j+1, vjoy[j+1][0], vjoy[j+1][1] , vjoy[j+1][2], vjoy[j+1][3]); + + } + } + + for(int j=0;j= 1000000000) { + mView.post(new Runnable() { + public void run() { + if (frames > 0) { + fpsPop.setText(frames); + } + } + }); + startTime = System.nanoTime(); + frames = 0; + } + } + } + } + + public void audioDisable(boolean disabled) { + if (disabled) { + ethd.Player.pause(); + } else { + ethd.Player.play(); + } + } + + public void fastForward(boolean enabled) { + if (enabled) { + ethd.setPriority(Thread.MIN_PRIORITY); + } else { + ethd.setPriority(Thread.NORM_PRIORITY); + } + } + + class EmuThread extends Thread + { + AudioTrack Player; + long pos; //write position + long size; //size in frames + private boolean sound; + + public EmuThread(boolean sound) { + this.sound = sound; + } + + @Override public void run() + { + if (sound) { + int min=AudioTrack.getMinBufferSize(44100,AudioFormat.CHANNEL_OUT_STEREO,AudioFormat.ENCODING_PCM_16BIT); + + if (2048>min) + min=2048; + + Player = new AudioTrack( + AudioManager.STREAM_MUSIC, + 44100, + AudioFormat.CHANNEL_OUT_STEREO, + AudioFormat.ENCODING_PCM_16BIT, + min, + AudioTrack.MODE_STREAM + ); + + size=min/4; + pos=0; + + Log.i("audcfg", "Audio streaming: buffer size " + min + " samples / " + min/44100.0 + " ms"); + Player.play(); + } + + JNIdc.run(this); + } + + int WriteBuffer(short[] samples, int wait) + { + if (sound) { + int newdata=samples.length/2; + + if (wait==0) + { + //user bytes = write-read + //available = size - (write - play) + long used=pos-Player.getPlaybackHeadPosition(); + long avail=size-used; + + //Log.i("AUD", "u: " + used + " a: " + avail); + if (avail= Build.VERSION_CODES.KITKAT) { + GL2JNIView.this.setSystemUiVisibility( + View.SYSTEM_UI_FLAG_LAYOUT_STABLE + | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION + | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN + | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION + | View.SYSTEM_UI_FLAG_FULLSCREEN + | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY); + requestLayout(); + } + } + + private boolean takeScreenshot = false; + public void screenGrab() { + takeScreenshot = true; + } + +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/emu/GLCFactory.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/emu/GLCFactory.java new file mode 100644 index 000000000..800045ac8 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/emu/GLCFactory.java @@ -0,0 +1,237 @@ +package com.reicast.emulator.emu; + +import java.util.Locale; + +import javax.microedition.khronos.egl.EGL10; +import javax.microedition.khronos.egl.EGLConfig; +import javax.microedition.khronos.egl.EGLContext; +import javax.microedition.khronos.egl.EGLDisplay; + +import android.opengl.GLSurfaceView; +import android.util.Log; + +public class GLCFactory { + + private static void LOGI(String S) { Log.i("GL2JNIView",S); } + private static void LOGW(String S) { Log.w("GL2JNIView",S); } + private static void LOGE(String S) { Log.e("GL2JNIView",S); } + + public static class ContextFactory implements GLSurfaceView.EGLContextFactory + { + private static final int EGL_CONTEXT_CLIENT_VERSION = 0x3098; + + public EGLContext createContext(EGL10 egl,EGLDisplay display,EGLConfig eglConfig) + { + int[] attrList = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE }; + + LOGI("Creating OpenGL ES 2.0 context"); + + checkEglError("Before eglCreateContext",egl); + EGLContext context = egl.eglCreateContext(display,eglConfig,EGL10.EGL_NO_CONTEXT,attrList); + checkEglError("After eglCreateContext",egl); + return(context); + } + + public void destroyContext(EGL10 egl,EGLDisplay display,EGLContext context) + { + LOGI("Destroying OpenGL ES 2.0 context"); + egl.eglDestroyContext(display,context); + } + } + + private static void checkEglError(String prompt,EGL10 egl) + { + int error; + + while((error=egl.eglGetError()) != EGL10.EGL_SUCCESS) + LOGE(String.format("%s: EGL error: 0x%x",prompt,error)); + } + + public static class ConfigChooser implements GLSurfaceView.EGLConfigChooser + { + // Subclasses can adjust these values: + protected int mRedSize; + protected int mGreenSize; + protected int mBlueSize; + protected int mAlphaSize; + protected int mDepthSize; + protected int mStencilSize; + private int[] mValue = new int[1]; + + public ConfigChooser(int r,int g,int b,int a,int depth,int stencil) + { + mRedSize = r; + mGreenSize = g; + mBlueSize = b; + mAlphaSize = a; + mDepthSize = depth; + mStencilSize = stencil; + } + + // This EGL config specification is used to specify 2.0 rendering. + // We use a minimum size of 4 bits for red/green/blue, but will + // perform actual matching in chooseConfig() below. + private static final int EGL_OPENGL_ES2_BIT = 4; + private static final int[] cfgAttrs = + { + EGL10.EGL_RED_SIZE, 4, + EGL10.EGL_GREEN_SIZE, 4, + EGL10.EGL_BLUE_SIZE, 4, + EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, + EGL10.EGL_DEPTH_SIZE, 24, + EGL10.EGL_NONE + }; + + public EGLConfig chooseConfig(EGL10 egl,EGLDisplay display) + { + // Get the number of minimally matching EGL configurations + int[] cfgCount = new int[1]; + egl.eglChooseConfig(display,cfgAttrs,null,0,cfgCount); + + if(cfgCount[0]<=0) + { + cfgAttrs[9]=16; + egl.eglChooseConfig(display,cfgAttrs,null,0,cfgCount); + } + + + if(cfgCount[0]<=0) + throw new IllegalArgumentException("No configs match configSpec"); + + // Allocate then read the array of minimally matching EGL configs + EGLConfig[] configs = new EGLConfig[cfgCount[0]]; + egl.eglChooseConfig(display,cfgAttrs,configs,cfgCount[0],cfgCount); + + if(GL2JNIView.DEBUG) + printConfigs(egl,display,configs); + + // Now return the "best" one + return(chooseConfig(egl,display,configs)); + } + + public EGLConfig chooseConfig(EGL10 egl,EGLDisplay display,EGLConfig[] configs) + { + for(EGLConfig config : configs) + { + int d = findConfigAttrib(egl,display,config,EGL10.EGL_DEPTH_SIZE,0); + int s = findConfigAttrib(egl,display,config,EGL10.EGL_STENCIL_SIZE,0); + + // We need at least mDepthSize and mStencilSize bits + if(d>=mDepthSize || s>=mStencilSize) + { + // We want an *exact* match for red/green/blue/alpha + int r = findConfigAttrib(egl,display,config,EGL10.EGL_RED_SIZE, 0); + int g = findConfigAttrib(egl,display,config,EGL10.EGL_GREEN_SIZE,0); + int b = findConfigAttrib(egl,display,config,EGL10.EGL_BLUE_SIZE, 0); + int a = findConfigAttrib(egl,display,config,EGL10.EGL_ALPHA_SIZE,0); + + if(r==mRedSize && g==mGreenSize && b==mBlueSize && a==mAlphaSize) + return(config); + } + } + + return(null); + } + + private int findConfigAttrib(EGL10 egl,EGLDisplay display,EGLConfig config,int attribute,int defaultValue) + { + return(egl.eglGetConfigAttrib(display,config,attribute,mValue)? mValue[0] : defaultValue); + } + + private void printConfigs(EGL10 egl,EGLDisplay display,EGLConfig[] configs) + { + LOGW(String.format(Locale.getDefault(), "%d configurations", configs.length)); + + for(int i=0 ; i= 2; clientVersion-- ) { + int[] attrList = { EGL_CONTEXT_CLIENT_VERSION, clientVersion, EGL14.EGL_NONE }; + + LOGI("Creating OpenGL ES " + clientVersion + " context"); + + checkEglError("Before eglCreateContext",egl); + context = egl.eglCreateContext(display,eglConfig,EGL10.EGL_NO_CONTEXT,attrList); + checkEglError("After eglCreateContext",egl); + if (context != EGL10.EGL_NO_CONTEXT) { + break; + } + } + return(context); + } + + public void destroyContext(EGL10 egl,EGLDisplay display,EGLContext context) + { + LOGI("Destroying OpenGL ES X context"); + egl.eglDestroyContext(display,context); + } + } + + private static void checkEglError(String prompt,EGL10 egl) + { + int error; + + while((error=egl.eglGetError()) != EGL14.EGL_SUCCESS) + LOGE(String.format(Locale.getDefault(), "%s: EGL error: 0x%x",prompt,error)); + } + + public static class ConfigChooser implements GLSurfaceView.EGLConfigChooser + { + // Subclasses can adjust these values: + protected int mRedSize; + protected int mGreenSize; + protected int mBlueSize; + protected int mAlphaSize; + protected int mDepthSize; + protected int mStencilSize; + private int[] mValue = new int[1]; + + public ConfigChooser(int r,int g,int b,int a,int depth,int stencil) + { + mRedSize = r; + mGreenSize = g; + mBlueSize = b; + mAlphaSize = a; + mDepthSize = depth; + mStencilSize = stencil; + } + + public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { + mValue = new int[1]; + + int glAPIToTry = EGLExt.EGL_OPENGL_ES3_BIT_KHR; + int[] configSpec = null; + + do { + EGL14.eglBindAPI(glAPIToTry); + + int renderableType; + if (glAPIToTry == EGLExt.EGL_OPENGL_ES3_BIT_KHR) { + renderableType = EGLExt.EGL_OPENGL_ES3_BIT_KHR; + // If this API does not work, try ES2 next. + glAPIToTry = EGL14.EGL_OPENGL_ES2_BIT; + } else { + renderableType = EGL14.EGL_OPENGL_ES2_BIT; + // If this API does not work, try ES next. + glAPIToTry = EGL14.EGL_OPENGL_ES_API; + } + + configSpec = new int[] { + EGL14.EGL_RED_SIZE, 4, + EGL14.EGL_GREEN_SIZE, 4, + EGL14.EGL_BLUE_SIZE, 4, + EGL14.EGL_RENDERABLE_TYPE, renderableType, + EGL14.EGL_DEPTH_SIZE, 24, + EGL14.EGL_NONE + }; + + if (!egl.eglChooseConfig(display, configSpec, null, 0, mValue)) { + configSpec[9] = 16; + if (!egl.eglChooseConfig(display, configSpec, null, 0, mValue)) { + throw new IllegalArgumentException("Could not get context count"); + } + } + + } while (glAPIToTry != EGL14.EGL_OPENGL_ES_API && mValue[0]<=0); + + if (mValue[0]<=0) { + throw new IllegalArgumentException("No configs match configSpec"); + } + + // Get all matching configurations. + EGLConfig[] configs = new EGLConfig[mValue[0]]; + if (GL2JNIView.DEBUG) + LOGW(String.format(Locale.getDefault(), "%d configurations", configs.length)); + if (!egl.eglChooseConfig(display, configSpec, configs, mValue[0], mValue)) { + throw new IllegalArgumentException("Could not get config data"); + } + + for (int i = 0; i < configs.length; ++i) { + EGLConfig config = configs[i]; + int d = findConfigAttrib(egl, display, config, + EGL14.EGL_DEPTH_SIZE, 0); + int s = findConfigAttrib(egl, display, config, + EGL14.EGL_STENCIL_SIZE, 0); + + // We need at least mDepthSize and mStencilSize bits + if (d >= mDepthSize || s >= mStencilSize) { + // We want an *exact* match for red/green/blue/alpha + int r = findConfigAttrib(egl, display, config, + EGL14.EGL_RED_SIZE, 0); + int g = findConfigAttrib(egl, display, config, + EGL14.EGL_GREEN_SIZE, 0); + int b = findConfigAttrib(egl, display, config, + EGL14.EGL_BLUE_SIZE, 0); + int a = findConfigAttrib(egl, display, config, + EGL14.EGL_ALPHA_SIZE, 0); + + if (r == mRedSize && g == mGreenSize && b == mBlueSize + && a == mAlphaSize) + if (GL2JNIView.DEBUG) { + LOGW(String.format("Configuration %d:", i)); + printConfig(egl, display, configs[i]); + } + return config; + } + } + + throw new IllegalArgumentException("Could not find suitable EGL config"); + } + + private int findConfigAttrib(EGL10 egl,EGLDisplay display,EGLConfig config,int attribute,int defaultValue) + { + return(egl.eglGetConfigAttrib(display,config,attribute,mValue)? mValue[0] : defaultValue); + } + + private void printConfig(EGL10 egl,EGLDisplay display,EGLConfig config) + { + final int[] attributes = + { + EGL14.EGL_BUFFER_SIZE, + EGL14.EGL_ALPHA_SIZE, + EGL14.EGL_BLUE_SIZE, + EGL14.EGL_GREEN_SIZE, + EGL14.EGL_RED_SIZE, + EGL14.EGL_DEPTH_SIZE, + EGL14.EGL_STENCIL_SIZE, + EGL14.EGL_CONFIG_CAVEAT, + EGL14.EGL_CONFIG_ID, + EGL14.EGL_LEVEL, + EGL14.EGL_MAX_PBUFFER_HEIGHT, + EGL14.EGL_MAX_PBUFFER_PIXELS, + EGL14.EGL_MAX_PBUFFER_WIDTH, + EGL14.EGL_NATIVE_RENDERABLE, + EGL14.EGL_NATIVE_VISUAL_ID, + EGL14.EGL_NATIVE_VISUAL_TYPE, + 0x3030, // EGL14.EGL_PRESERVED_RESOURCES, + EGL14.EGL_SAMPLES, + EGL14.EGL_SAMPLE_BUFFERS, + EGL14.EGL_SURFACE_TYPE, + EGL14.EGL_TRANSPARENT_TYPE, + EGL14.EGL_TRANSPARENT_RED_VALUE, + EGL14.EGL_TRANSPARENT_GREEN_VALUE, + EGL14.EGL_TRANSPARENT_BLUE_VALUE, + 0x3039, // EGL14.EGL_BIND_TO_TEXTURE_RGB, + 0x303A, // EGL14.EGL_BIND_TO_TEXTURE_RGBA, + 0x303B, // EGL14.EGL_MIN_SWAP_INTERVAL, + 0x303C, // EGL14.EGL_MAX_SWAP_INTERVAL, + EGL14.EGL_LUMINANCE_SIZE, + EGL14.EGL_ALPHA_MASK_SIZE, + EGL14.EGL_COLOR_BUFFER_TYPE, + EGL14.EGL_RENDERABLE_TYPE, + 0x3042 // EGL14.EGL_CONFORMANT + }; + + final String[] names = + { + "EGL_BUFFER_SIZE", + "EGL_ALPHA_SIZE", + "EGL_BLUE_SIZE", + "EGL_GREEN_SIZE", + "EGL_RED_SIZE", + "EGL_DEPTH_SIZE", + "EGL_STENCIL_SIZE", + "EGL_CONFIG_CAVEAT", + "EGL_CONFIG_ID", + "EGL_LEVEL", + "EGL_MAX_PBUFFER_HEIGHT", + "EGL_MAX_PBUFFER_PIXELS", + "EGL_MAX_PBUFFER_WIDTH", + "EGL_NATIVE_RENDERABLE", + "EGL_NATIVE_VISUAL_ID", + "EGL_NATIVE_VISUAL_TYPE", + "EGL_PRESERVED_RESOURCES", + "EGL_SAMPLES", + "EGL_SAMPLE_BUFFERS", + "EGL_SURFACE_TYPE", + "EGL_TRANSPARENT_TYPE", + "EGL_TRANSPARENT_RED_VALUE", + "EGL_TRANSPARENT_GREEN_VALUE", + "EGL_TRANSPARENT_BLUE_VALUE", + "EGL_BIND_TO_TEXTURE_RGB", + "EGL_BIND_TO_TEXTURE_RGBA", + "EGL_MIN_SWAP_INTERVAL", + "EGL_MAX_SWAP_INTERVAL", + "EGL_LUMINANCE_SIZE", + "EGL_ALPHA_MASK_SIZE", + "EGL_COLOR_BUFFER_TYPE", + "EGL_RENDERABLE_TYPE", + "EGL_CONFORMANT" + }; + + int[] value = new int[1]; + + for(int i=0 ; i popups; + + private File sdcard = Environment.getExternalStorageDirectory(); + private String home_directory = sdcard + "/dc"; + + private int frames = Config.frameskip; + private boolean screen = Config.widescreen; + private boolean limit = Config.limitfps; + private boolean audio; + private boolean masteraudio; + private boolean boosted = false; + private boolean syncedrender; + + public OnScreenMenu(Activity context, SharedPreferences prefs) { + if (context instanceof GL2JNINative) { + this.mContext = (GL2JNINative) context; + } + if (context instanceof GL2JNIActivity) { + this.mContext = (GL2JNIActivity) context; + } + popups = new Vector(); + if (prefs != null) { + this.prefs = prefs; + home_directory = prefs.getString(Config.pref_home, home_directory); + masteraudio = !Config.nosound; + audio = masteraudio; + syncedrender = Config.syncedrender; + } + vmuLcd = new VmuLcd(mContext); + vmuLcd.setOnClickListener(new OnClickListener() { + public void onClick(View v) { + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) OnScreenMenu.this.mContext).toggleVmu(); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) OnScreenMenu.this.mContext).toggleVmu(); + } + } + }); + } + + void displayDebugPopup(final PopupWindow popUp) { + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext).displayDebug(new DebugPopup(mContext)); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext).displayDebug(new DebugPopup(mContext)); + } + + } + + public class FpsPopup extends PopupWindow { + + private TextView fpsText; + + public FpsPopup(Context c) { + super(c); + setBackgroundDrawable(null); + fpsText = new TextView(mContext); + fpsText.setTextAppearance(mContext, R.style.fpsOverlayText); + fpsText.setGravity(Gravity.CENTER); + fpsText.setText("XX"); + setContentView(fpsText); + setFocusable(false); + } + + public void setText(int frames) { + fpsText.setText(String.valueOf(frames)); + fpsText.invalidate(); + } + } + + private void removePopUp(PopupWindow window) { + window.dismiss(); + popups.remove(window); + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext) + .displayPopUp(((GL2JNINative) OnScreenMenu.this.mContext).popUp); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext) + .displayPopUp(((GL2JNIActivity) OnScreenMenu.this.mContext).popUp); + } + } + + public class DebugPopup extends PopupWindow { + + public DebugPopup(Context c) { + super(c); + setBackgroundDrawable(new BitmapDrawable()); + + View shell = mContext.getLayoutInflater().inflate(R.layout.menu_popup_debug, null); + ScrollView hlay = (ScrollView) shell.findViewById(R.id.menuDebug); + + OnClickListener clickBack = new OnClickListener() { + public void onClick(View v) { + removePopUp(DebugPopup.this); + } + }; + Button buttonBack = (Button) hlay.findViewById(R.id.buttonBack); + addimg(buttonBack, R.drawable.up, clickBack); + + OnClickListener clickClearCache = new OnClickListener() { + public void onClick(View v) { + JNIdc.send(0, 0); // Killing texture cache + dismiss(); + } + }; + Button buttonCache = (Button) hlay.findViewById(R.id.buttonClearCache); + addimg(buttonCache, R.drawable.clear_cache, clickClearCache); + + OnClickListener clickProfilerOne = new OnClickListener() { + public void onClick(View v) { + JNIdc.send(1, 3000); // sample_Start(param); + dismiss(); + } + }; + Button buttonProfilerOne = (Button) hlay.findViewById(R.id.buttonProfilerOne); + addimg(buttonProfilerOne, R.drawable.profiler, clickProfilerOne); + + OnClickListener clickProfilerTwo = new OnClickListener() { + public void onClick(View v) { + JNIdc.send(1, 0); // sample_Start(param); + dismiss(); + } + }; + Button buttonProfilerTwo = (Button) hlay.findViewById(R.id.buttonProfilerTwo); + addimg(buttonProfilerTwo, R.drawable.profiler, clickProfilerTwo); + + OnClickListener clickPrintStats = new OnClickListener() { + public void onClick(View v) { + JNIdc.send(0, 2); + dismiss(); // print_stats=true; + } + }; + Button buttonPrintStats = (Button) hlay.findViewById(R.id.buttonPrintStats); + addimg(buttonPrintStats, R.drawable.print_stats, clickPrintStats); + + setContentView(shell); + setFocusable(true); + popups.add(this); + } + } + + void displayConfigPopup(final PopupWindow popUp) { + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext).displayConfig(new ConfigPopup(mContext)); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext) + .displayConfig(new ConfigPopup(mContext)); + } + } + + public class ConfigPopup extends PopupWindow { + + private Button framelimit; + private Button audiosetting; + private Button fastforward; + private Button fdown; + private Button fup; + + public ConfigPopup(Context c) { + super(c); + setBackgroundDrawable(new BitmapDrawable()); + + View shell = mContext.getLayoutInflater().inflate(R.layout.menu_popup_config, null); + final ScrollView hlay = (ScrollView) shell.findViewById(R.id.menuConfig); + + OnClickListener clickBack = new OnClickListener() { + public void onClick(View v) { + removePopUp(ConfigPopup.this); + } + }; + Button buttonBack = (Button) hlay.findViewById(R.id.buttonBack); + addimg(buttonBack, R.drawable.up, clickBack); + + final Button buttonScreen = (Button) hlay.findViewById(R.id.buttonWidescreen); + OnClickListener clickScreen = new OnClickListener() { + public void onClick(View v) { + if (screen) { + JNIdc.widescreen(0); + screen = false; + addimg(buttonScreen, R.drawable.widescreen, this); + } else { + JNIdc.widescreen(1); + screen = true; + addimg(buttonScreen, R.drawable.normal_view, this); + } + } + }; + if (screen) { + addimg(buttonScreen, R.drawable.normal_view, clickScreen); + } else { + addimg(buttonScreen, R.drawable.widescreen, clickScreen); + } + + fdown = (Button) hlay.findViewById(R.id.buttonFramesDown); + OnClickListener clickFdown = new OnClickListener() { + public void onClick(View v) { + if (frames > 0) { + frames--; + } + JNIdc.frameskip(frames); + enableState(fdown, fup); + } + }; + addimg(fdown, R.drawable.frames_down, clickFdown); + + fup = (Button) hlay.findViewById(R.id.buttonFramesUp); + OnClickListener clickFup = new OnClickListener() { + public void onClick(View v) { + if (frames < 5) { + frames++; + } + JNIdc.frameskip(frames); + enableState(fdown, fup); + } + }; + addimg(fup, R.drawable.frames_up, clickFup); + enableState(fdown, fup); + + framelimit = (Button) hlay.findViewById(R.id.buttonFrameLimit); + OnClickListener clickFrameLimit = new OnClickListener() { + public void onClick(View v) { + if (limit) { + JNIdc.limitfps(0); + limit = false; + addimg(framelimit, R.drawable.frames_limit_on, this); + } else { + JNIdc.limitfps(1); + limit = true; + addimg(framelimit, R.drawable.frames_limit_off, this); + } + } + }; + if (limit) { + addimg(framelimit, R.drawable.frames_limit_off, clickFrameLimit); + } else { + addimg(framelimit, R.drawable.frames_limit_on, clickFrameLimit); + } + + audiosetting = (Button) hlay.findViewById(R.id.buttonAudio); + OnClickListener clickAudio = new OnClickListener() { + public void onClick(View v) { + if (audio) { + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext).mView + .audioDisable(true); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext).mView + .audioDisable(true); + } + audio = false; + addimg(audiosetting, R.drawable.enable_sound, this); + } else { + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext).mView + .audioDisable(false); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext).mView + .audioDisable(false); + } + audio = true; + addimg(audiosetting, R.drawable.mute_sound, this); + } + } + }; + if (audio) { + addimg(audiosetting, R.drawable.mute_sound, clickAudio); + } else { + addimg(audiosetting, R.drawable.enable_sound, clickAudio); + } + if (!masteraudio) { + audiosetting.setEnabled(false); + } + + fastforward = (Button) hlay.findViewById(R.id.buttonTurbo); + OnClickListener clickTurbo = new OnClickListener() { + public void onClick(View v) { + if (boosted) { + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext).mView + .audioDisable(!audio); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext).mView + .audioDisable(!audio); + } + JNIdc.nosound(!audio ? 1 : 0); + audiosetting.setEnabled(true); + JNIdc.limitfps(limit ? 1 : 0); + framelimit.setEnabled(true); + JNIdc.frameskip(frames); + enableState(fdown, fup); + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext).mView.fastForward(false); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext).mView + .fastForward(false); + } + boosted = false; + addimg(fastforward, R.drawable.star, this); + } else { + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext).mView.audioDisable(true); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext).mView + .audioDisable(true); + } + JNIdc.nosound(1); + audiosetting.setEnabled(false); + JNIdc.limitfps(0); + framelimit.setEnabled(false); + JNIdc.frameskip(5); + fdown.setEnabled(false); + fup.setEnabled(false); + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) mContext).mView.fastForward(true); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) mContext).mView.fastForward(true); + } + boosted = true; + addimg(fastforward, R.drawable.reset, this); + } + } + }; + fastforward.setOnClickListener(clickTurbo); + if (boosted) { + addimg(fastforward, R.drawable.reset, clickTurbo); + } else { + addimg(fastforward, R.drawable.star, clickTurbo); + } + if (syncedrender) { + fastforward.setEnabled(false); + } + + setContentView(shell); + setFocusable(true); + popups.add(this); + } + } + + /** + * Toggle the frameskip button visibility by current value + * + * @param fdown + * The frameskip reduction button view + * @param fup + * The frameskip increase button view + */ + private void enableState(Button fdown, Button fup) { + if (frames == 0) { + fdown.setEnabled(false); + } else { + fdown.setEnabled(true); + } + if (frames == 5) { + fup.setEnabled(false); + } else { + fup.setEnabled(true); + } + } + + public boolean dismissPopUps() { + for (PopupWindow popup : popups) { + if (popup.isShowing()) { + popup.dismiss(); + popups.remove(popup); + return true; + } + } + return false; + } + + public static int getPixelsFromDp(float dps, Context context) { + return (int) (dps * context.getResources().getDisplayMetrics().density + 0.5f); + } + + public VmuLcd getVmu() { + return vmuLcd; + } + + View addbut(int x, String l, OnClickListener ocl) { + Button but = new Button(mContext); + Drawable image = mContext.getResources().getDrawable(x); + image.setBounds(0, 0, 72, 72); + but.setCompoundDrawables(image, null, null, null); + but.setOnClickListener(ocl); + return but; + } + + Button addimg(Button but, int x, OnClickListener ocl) { + Drawable image = mContext.getResources().getDrawable(x); + image.setBounds(0, 0, 72, 72); + but.setCompoundDrawables(image, null, null, null); + but.setOnClickListener(ocl); + return but; + } + + void modbut (View button, int x) { + Button but = (Button) button; + Drawable image = mContext.getResources().getDrawable(x); + image.setBounds(0, 0, 72, 72); + but.setCompoundDrawables(image, null, null, null); + } + + public class VmuPopup extends PopupWindow { + LayoutParams vparams; + LinearLayout vlay; + + public VmuPopup(Context c) { + super(c); + setBackgroundDrawable(null); + int pX = OnScreenMenu.getPixelsFromDp(96, mContext); + int pY = OnScreenMenu.getPixelsFromDp(68, mContext); + vparams = new LayoutParams(pX, pY); + vlay = new LinearLayout(mContext); + vlay.setOrientation(LinearLayout.HORIZONTAL); + setContentView(vlay); + setFocusable(false); + } + + public void showVmu() { + vmuLcd.configureScale(96); + vlay.addView(vmuLcd, vparams); + } + + public void hideVmu() { + vlay.removeView(vmuLcd); + } + + } + + public class MainPopup extends PopupWindow { + + private LinearLayout vmuIcon; + LinearLayout.LayoutParams params; + + private LinearLayout.LayoutParams setVmuParams() { + int vpX = getPixelsFromDp(72, mContext); + int vpY = getPixelsFromDp(52, mContext); + LinearLayout.LayoutParams vmuParams = new LinearLayout.LayoutParams( + vpX, vpY); + vmuParams.weight = 1.0f; + vmuParams.gravity = Gravity.LEFT | Gravity.CENTER_VERTICAL; + vmuParams.leftMargin = 6; + return vmuParams; + } + + public MainPopup(Context c) { + super(c); + setBackgroundDrawable(new BitmapDrawable()); + + View shell = mContext.getLayoutInflater().inflate(R.layout.menu_popup_main, null); + ScrollView hlay = (ScrollView) shell.findViewById(R.id.menuMain); + + vmuIcon = (LinearLayout) hlay.findViewById(R.id.vmuIcon); + vmuLcd.configureScale(72); + params = setVmuParams(); + vmuIcon.addView(vmuLcd, params); + + OnClickListener clickDisk = new OnClickListener() { + public void onClick(View v) { + JNIdc.diskSwap(null); + dismiss(); + } + }; + Button buttonDisk = (Button) hlay.findViewById(R.id.buttonDisk); + addimg(buttonDisk, R.drawable.disk_swap, clickDisk); + + OnClickListener clickVmuSwap = new OnClickListener() { + public void onClick(View v) { + JNIdc.vmuSwap(); + dismiss(); + } + }; + Button buttonVmuSwap = (Button) hlay.findViewById(R.id.buttonVmuSwap); + addimg(buttonVmuSwap, R.drawable.vmu_swap, clickVmuSwap); + + OnClickListener clickOptions = new OnClickListener() { + public void onClick(View v) { + displayConfigPopup(MainPopup.this); + popups.remove(MainPopup.this); + dismiss(); + } + }; + Button buttonOptions = (Button) hlay.findViewById(R.id.buttonOptions); + addimg(buttonOptions, R.drawable.config, clickOptions); + + OnClickListener clickDebugging = new OnClickListener() { + public void onClick(View v) { + displayDebugPopup(MainPopup.this); + popups.remove(MainPopup.this); + dismiss(); + } + }; + Button buttonDebugging = (Button) hlay.findViewById(R.id.buttonDebugging); + addimg(buttonDebugging, R.drawable.disk_unknown, clickDebugging); + + OnClickListener clickScreenshot = new OnClickListener() { + public void onClick(View v) { + // screenshot + if (mContext instanceof GL2JNINative) { + ((GL2JNINative) OnScreenMenu.this.mContext) + .screenGrab(); + } + if (mContext instanceof GL2JNIActivity) { + ((GL2JNIActivity) OnScreenMenu.this.mContext) + .screenGrab(); + } + } + }; + Button buttonScreenshot = (Button) hlay.findViewById(R.id.buttonScreenshot); + addimg(buttonScreenshot, R.drawable.print_stats, clickScreenshot); + + OnClickListener clickExit = new OnClickListener() { + public void onClick(View v) { + if (Config.externalIntent) { + ((Activity) mContext).finish(); + } else { + Intent inte = new Intent(mContext, MainActivity.class); + mContext.startActivity(inte); + ((Activity) mContext).finish(); + } + } + }; + Button buttonExit = (Button) hlay.findViewById(R.id.buttonExit); + addimg(buttonExit, R.drawable.close, clickExit); + + setContentView(shell); + setFocusable(true); + } + + public void hideVmu() { + vmuIcon.removeView(vmuLcd); + } + + public void showVmu() { + vmuLcd.configureScale(72); + params = setVmuParams(); + vmuIcon.addView(vmuLcd, params); + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/Gamepad.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/Gamepad.java new file mode 100644 index 000000000..02b6bc556 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/Gamepad.java @@ -0,0 +1,257 @@ +package com.reicast.emulator.periph; + +import java.util.HashMap; + +import tv.ouya.console.api.OuyaController; +import tv.ouya.console.api.OuyaFacade; +import android.app.UiModeManager; +import android.content.Context; +import android.content.SharedPreferences; +import android.content.pm.PackageManager; +import android.content.res.Configuration; +import android.os.Build; +import android.util.SparseArray; +import android.view.KeyEvent; + +public class Gamepad { + + public static final String pref_player1 = "device_descriptor_player_1"; + public static final String pref_player2 = "device_descriptor_player_2"; + public static final String pref_player3 = "device_descriptor_player_3"; + public static final String pref_player4 = "device_descriptor_player_4"; + public static final String pref_pad = "controller"; + + public static final String pref_js_modified = "modified_key_layout"; + public static final String pref_js_compat = "controller_compat"; + public static final String pref_js_merged = "merged_joystick"; + public static final String pref_js_rbuttons = "right_buttons"; + + public static final String pref_button_a = "a_button"; + public static final String pref_button_b = "b_button"; + public static final String pref_button_x = "x_button"; + public static final String pref_button_y = "y_button"; + + public static final String pref_button_l = "l_button"; + public static final String pref_button_r = "r_button"; + + public static final String pref_dpad_up = "dpad_up"; + public static final String pref_dpad_down = "dpad_down"; + public static final String pref_dpad_left = "dpad_left"; + public static final String pref_dpad_right = "dpad_right"; + + public static final String pref_button_start = "start_button"; + public static final String pref_button_select = "select_button"; + + public static final String controllers_sony = "Sony PLAYSTATION(R)3 Controller"; + public static final String controllers_xbox = "Microsoft X-Box 360 pad"; + public static final String controllers_shield = "NVIDIA Corporation NVIDIA Controller"; + public static final String controllers_play = "keypad-zeus"; + public static final String controllers_play_gp = "keypad-game-zeus"; + public static final String controllers_play_tp = "synaptics_touchpad"; + public static final String controllers_gamekey = "gamekeyboard"; + + public String[] portId = { "_A", "_B", "_C", "_D" }; + public boolean[] compat = { false, false, false, false }; + public boolean[] custom = { false, false, false, false }; + public boolean[] joystick = { false, false, false, false }; + public int[] name = { -1, -1, -1, -1 }; + public float[] globalLS_X = new float[4], globalLS_Y = new float[4], + previousLS_X = new float[4], previousLS_Y = new float[4]; + public boolean[] wasKeyStick = { false, false, false, false }; + public int map[][] = new int[4][]; + + public SparseArray deviceId_deviceDescriptor = new SparseArray(); + public HashMap deviceDescriptor_PlayerNum = new HashMap(); + + public boolean isActiveMoga[] = { false, false, false, false }; + public boolean isMogaPro[] = { false, false, false, false }; + + public SparseArray playerNumX = new SparseArray(); + public int[] keypadZeus = new int[2]; + + public boolean isXperiaPlay; + public boolean isOuyaOrTV; +// public boolean isNvidiaShield; + + public static final int Xperia_Touchpad = 1048584; + + public static final int key_CONT_B = 0x0002; + public static final int key_CONT_A = 0x0004; + public static final int key_CONT_START = 0x0008; + public static final int key_CONT_DPAD_UP = 0x0010; + public static final int key_CONT_DPAD_DOWN = 0x0020; + public static final int key_CONT_DPAD_LEFT = 0x0040; + public static final int key_CONT_DPAD_RIGHT = 0x0080; + public static final int key_CONT_Y = 0x0200; + public static final int key_CONT_X = 0x0400; + + public int[] getConsoleController() { + return new int[] { + OuyaController.BUTTON_O, key_CONT_A, + OuyaController.BUTTON_A, key_CONT_B, + OuyaController.BUTTON_U, key_CONT_X, + OuyaController.BUTTON_Y, key_CONT_Y, + + OuyaController.BUTTON_DPAD_UP, key_CONT_DPAD_UP, + OuyaController.BUTTON_DPAD_DOWN, key_CONT_DPAD_DOWN, + OuyaController.BUTTON_DPAD_LEFT, key_CONT_DPAD_LEFT, + OuyaController.BUTTON_DPAD_RIGHT, key_CONT_DPAD_RIGHT, + + getStartButtonCode(), key_CONT_START, + getSelectButtonCode(), getSelectButtonCode() + // Redundant, but verifies it is mapped properly + }; + } + + public int[] getXPlayController() { + return new int[] { + KeyEvent.KEYCODE_DPAD_CENTER, key_CONT_A, + KeyEvent.KEYCODE_BACK, key_CONT_B, + OuyaController.BUTTON_U, key_CONT_X, + OuyaController.BUTTON_Y, key_CONT_Y, + + OuyaController.BUTTON_DPAD_UP, key_CONT_DPAD_UP, + OuyaController.BUTTON_DPAD_DOWN, key_CONT_DPAD_DOWN, + OuyaController.BUTTON_DPAD_LEFT, key_CONT_DPAD_LEFT, + OuyaController.BUTTON_DPAD_RIGHT, key_CONT_DPAD_RIGHT, + + getStartButtonCode(), key_CONT_START, + getSelectButtonCode(), getSelectButtonCode() + // Redundant, but verifies it is mapped properly + }; + } + + public int[] getOUYAController() { + return new int[] { + OuyaController.BUTTON_O, key_CONT_A, + OuyaController.BUTTON_A, key_CONT_B, + OuyaController.BUTTON_U, key_CONT_X, + OuyaController.BUTTON_Y, key_CONT_Y, + + OuyaController.BUTTON_DPAD_UP, key_CONT_DPAD_UP, + OuyaController.BUTTON_DPAD_DOWN, key_CONT_DPAD_DOWN, + OuyaController.BUTTON_DPAD_LEFT, key_CONT_DPAD_LEFT, + OuyaController.BUTTON_DPAD_RIGHT, key_CONT_DPAD_RIGHT, + + getStartButtonCode(), key_CONT_START, + OuyaController.BUTTON_R3, key_CONT_START + }; + } + + public int[] getMogaController() { + return new int[] { + KeyEvent.KEYCODE_BUTTON_A, key_CONT_A, + KeyEvent.KEYCODE_BUTTON_B, key_CONT_B, + KeyEvent.KEYCODE_BUTTON_X, key_CONT_X, + KeyEvent.KEYCODE_BUTTON_Y, key_CONT_Y, + + KeyEvent.KEYCODE_DPAD_UP, key_CONT_DPAD_UP, + KeyEvent.KEYCODE_DPAD_DOWN, key_CONT_DPAD_DOWN, + KeyEvent.KEYCODE_DPAD_LEFT, key_CONT_DPAD_LEFT, + KeyEvent.KEYCODE_DPAD_RIGHT, key_CONT_DPAD_RIGHT, + + getStartButtonCode(), key_CONT_START, + getSelectButtonCode(), getSelectButtonCode() + }; + } + + public int[] setModifiedKeys(String id, int playerNum, SharedPreferences mPrefs) { + return new int[] { + mPrefs.getInt(pref_button_a + id, OuyaController.BUTTON_O), key_CONT_A, + mPrefs.getInt(pref_button_b + id, OuyaController.BUTTON_A), key_CONT_B, + mPrefs.getInt(pref_button_x + id, OuyaController.BUTTON_U), key_CONT_X, + mPrefs.getInt(pref_button_y + id, OuyaController.BUTTON_Y), key_CONT_Y, + + mPrefs.getInt(pref_dpad_up + id, OuyaController.BUTTON_DPAD_UP), key_CONT_DPAD_UP, + mPrefs.getInt(pref_dpad_down + id, OuyaController.BUTTON_DPAD_DOWN), key_CONT_DPAD_DOWN, + mPrefs.getInt(pref_dpad_left + id, OuyaController.BUTTON_DPAD_LEFT), key_CONT_DPAD_LEFT, + mPrefs.getInt(pref_dpad_right + id, OuyaController.BUTTON_DPAD_RIGHT), key_CONT_DPAD_RIGHT, + + mPrefs.getInt(pref_button_start + id, getStartButtonCode()), key_CONT_START, + mPrefs.getInt(pref_button_select + id, getSelectButtonCode()), getSelectButtonCode() + }; + } + + public boolean IsXperiaPlay() { + return android.os.Build.MODEL.equals("R800a") + || android.os.Build.MODEL.equals("R800i") + || android.os.Build.MODEL.equals("R800x") + || android.os.Build.MODEL.equals("R800at") + || android.os.Build.MODEL.equals("SO-01D") + || android.os.Build.MODEL.equals("zeus"); + } + + public boolean IsOuyaOrTV(Context context) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) { + UiModeManager uiModeManager = (UiModeManager) + context.getSystemService(Context.UI_MODE_SERVICE); + if (uiModeManager.getCurrentModeType() == Configuration.UI_MODE_TYPE_TELEVISION) { + return true; + } + } + PackageManager pMan = context.getPackageManager(); + if (pMan.hasSystemFeature(PackageManager.FEATURE_TELEVISION)) { + return true; + } else if (OuyaFacade.getInstance().isRunningOnOUYAHardware()) { + return true; + } + return false; + } + + public int getStartButtonCode() { + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.GINGERBREAD) { + return 108; + } else { + return KeyEvent.KEYCODE_BUTTON_START; + } + } + + public int getSelectButtonCode() { + if (Build.VERSION.SDK_INT < Build.VERSION_CODES.GINGERBREAD) { + return 109; + } else { + return KeyEvent.KEYCODE_BUTTON_SELECT; + } + } + + public boolean IsNvidiaShield() { + return android.os.Build.MODEL.equals("SHIELD") + || android.os.Build.DEVICE.equals("roth") + || android.os.Build.PRODUCT.equals("thor"); + } + + public void setCustomMapping(String id, int playerNum, SharedPreferences prefs) { + map[playerNum] = setModifiedKeys(id, playerNum, prefs); + } + + public void initJoyStickLayout(int playerNum) { + if (!joystick[playerNum]) { + globalLS_X[playerNum] = previousLS_X[playerNum] = 0.0f; + globalLS_Y[playerNum] = previousLS_Y[playerNum] = 0.0f; + } + } + + public void runCompatibilityMode(int joy, SharedPreferences prefs) { + for (int n = 0; n < 4; n++) { + if (compat[n]) { + String id = portId[n]; + joystick[n] = prefs.getBoolean(Gamepad.pref_js_merged + id, false); + getCompatibilityMap(n, portId[n], prefs); + initJoyStickLayout(n); + } + } + } + + public void fullCompatibilityMode(SharedPreferences prefs) { + for (int n = 0; n < 4; n++) { + runCompatibilityMode(n, prefs); + } + } + + public void getCompatibilityMap(int playerNum, String id, SharedPreferences prefs) { + name[playerNum] = prefs.getInt(Gamepad.pref_pad + id, -1); + if (name[playerNum] != -1) { + map[playerNum] = setModifiedKeys(id, playerNum, prefs); + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/MOGAInput.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/MOGAInput.java new file mode 100644 index 000000000..78f506488 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/MOGAInput.java @@ -0,0 +1,227 @@ +package com.reicast.emulator.periph; + + +/******************************************************************************/ + +import java.util.Arrays; + +import android.app.Activity; +import android.app.Instrumentation; +import android.content.Context; +import android.content.SharedPreferences; +import android.os.Build; +import android.os.Handler; +import android.os.SystemClock; +import android.preference.PreferenceManager; +import android.util.Log; + +import com.bda.controller.KeyEvent; +import com.bda.controller.Controller; +import com.bda.controller.ControllerListener; +import com.bda.controller.MotionEvent; +import com.bda.controller.StateEvent; +import com.reicast.emulator.GL2JNIActivity; +import com.reicast.emulator.GL2JNINative; +import com.reicast.emulator.R; + +/******************************************************************************/ + +/* + +*/ +public final class MOGAInput +{ + private SharedPreferences prefs; + + static final int DELAY = 1000 / 50; // 50 Hz + + public static final int ACTION_CONNECTED = Controller.ACTION_CONNECTED; + static final int ACTION_DISCONNECTED = Controller.ACTION_DISCONNECTED; + static final int ACTION_VERSION_MOGA = Controller.ACTION_VERSION_MOGA; + static final int ACTION_VERSION_MOGAPRO = Controller.ACTION_VERSION_MOGAPRO; + + public Controller mController = null; + public ExampleControllerListener mListener; + private String notify; + private Gamepad pad; + + private Activity act; + + public MOGAInput() + { + /* + mStates.put(StateEvent.STATE_CONNECTION, new ExampleInteger("STATE_CONNECTION......")); + mStates.put(StateEvent.STATE_POWER_LOW, new ExampleInteger("STATE_POWER_LOW......")); + mStates.put(StateEvent.STATE_CURRENT_PRODUCT_VERSION, new ExampleInteger("STATE_CURRENT_PRODUCT_VERSION")); + mStates.put(StateEvent.STATE_SUPPORTED_PRODUCT_VERSION, new ExampleInteger("STATE_SUPPORTED_PRODUCT_VERSION")); + + mKeys.put(KeyEvent.KEYCODE_DPAD_UP, new ExampleInteger("KEYCODE_DPAD_UP......")); + mKeys.put(KeyEvent.KEYCODE_DPAD_DOWN, new ExampleInteger("KEYCODE_DPAD_DOWN......")); + mKeys.put(KeyEvent.KEYCODE_DPAD_LEFT, new ExampleInteger("KEYCODE_DPAD_LEFT......")); + mKeys.put(KeyEvent.KEYCODE_DPAD_RIGHT, new ExampleInteger("KEYCODE_DPAD_RIGHT......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_A, new ExampleInteger("KEYCODE_BUTTON_A......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_B, new ExampleInteger("KEYCODE_BUTTON_B......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_X, new ExampleInteger("KEYCODE_BUTTON_X......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_Y, new ExampleInteger("KEYCODE_BUTTON_Y......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_L1, new ExampleInteger("KEYCODE_BUTTON_L1......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_R1, new ExampleInteger("KEYCODE_BUTTON_R1......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_L2, new ExampleInteger("KEYCODE_BUTTON_L2......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_R2, new ExampleInteger("KEYCODE_BUTTON_R2......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_THUMBL, new ExampleInteger("KEYCODE_BUTTON_THUMBL......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_THUMBR, new ExampleInteger("KEYCODE_BUTTON_THUMBR......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_START, new ExampleInteger("KEYCODE_BUTTON_START......")); + mKeys.put(KeyEvent.KEYCODE_BUTTON_SELECT, new ExampleInteger("KEYCODE_BUTTON_SELECT......")); + + mMotions.put(MotionEvent.AXIS_X, new ExampleFloat("AXIS_X.........")); + mMotions.put(MotionEvent.AXIS_Y, new ExampleFloat("AXIS_Y.........")); + mMotions.put(MotionEvent.AXIS_Z, new ExampleFloat("AXIS_Z.........")); + mMotions.put(MotionEvent.AXIS_RZ, new ExampleFloat("AXIS_RZ.......")); + mMotions.put(MotionEvent.AXIS_LTRIGGER, new ExampleFloat("AXIS_LTRIGGER.........")); + mMotions.put(MotionEvent.AXIS_RTRIGGER, new ExampleFloat("AXIS_RTRIGGER.........")); + */ + } + + public void onCreate(Activity act, Gamepad pad) { + this.act = act; + + this.pad = pad; + + prefs = PreferenceManager + .getDefaultSharedPreferences(act.getApplicationContext()); + + mController = Controller.getInstance(act); +// mController.init(); + MogaHack.init(mController, this.act); + mListener = new ExampleControllerListener(); + mController.setListener(mListener, new Handler()); + } + + public void onDestroy() + { + mController.exit(); + } + + public void onPause() + { + mController.onPause(); + } + + public void onResume() + { + mController.onResume(); + + /* + for(final Entry entry : mStates.entrySet()) + { + final int key = entry.getKey(); + final ExampleInteger value = entry.getValue(); + value.mValue = mController.getState(key); + } + + for(final Entry entry : mKeys.entrySet()) + { + final int key = entry.getKey(); + final ExampleInteger value = entry.getValue(); + value.mValue = mController.getKeyCode(key); + } + + for(final Entry entry : mMotions.entrySet()) + { + final int key = entry.getKey(); + final ExampleFloat value = entry.getValue(); + value.mValue = mController.getAxisValue(key); + } + */ + } + + public class ExampleControllerListener implements ControllerListener + { + int playerNum; + + public void setPlayerNum(int playerNum) { + this.playerNum = playerNum; + } + + public void onKeyEvent(KeyEvent event) + { + boolean keydown = false; + if (event.getAction() == KeyEvent.ACTION_DOWN) { + keydown = true; + } + if (act instanceof GL2JNIActivity) { + ((GL2JNIActivity) act).handle_key(playerNum, event.getKeyCode(), keydown); + } + if (act instanceof GL2JNINative) { + ((GL2JNINative) act).handle_key(playerNum, event.getKeyCode(), keydown); + } + } + + public void onMotionEvent(MotionEvent event) + { + if (act instanceof GL2JNIActivity) { + ((GL2JNIActivity) act).motionEventHandler(playerNum, event); + } + if (act instanceof GL2JNINative) { + ((GL2JNINative) act).motionEventHandler(playerNum, event); + } + } + + private void getCompatibilityMap(int playerNum, String id) { + pad.name[playerNum] = prefs.getInt("controller" + id, -1); + if (pad.name[playerNum] != -1) { + pad.map[playerNum] = pad.setModifiedKeys(id, playerNum, prefs); + } + } + + private void initJoyStickLayout(int playerNum) { + pad.globalLS_X[playerNum] = pad.previousLS_X[playerNum] = 0.0f; + pad.globalLS_Y[playerNum] = pad.previousLS_Y[playerNum] = 0.0f; + } + + private void notifyMogaConnected(final String notify, int playerNum) { + String id = pad.portId[playerNum]; + pad.custom[playerNum] = prefs.getBoolean("modified_key_layout" + id, false); + pad.compat[playerNum] = prefs.getBoolean("controller_compat" + id, false); + pad.joystick[playerNum] = prefs.getBoolean("separate_joystick" + id, false); + if (pad.compat[playerNum]) { + getCompatibilityMap(playerNum, id); + } else if (pad.custom[playerNum]) { + pad.map[playerNum] = pad.setModifiedKeys(id, playerNum, prefs); + } else { + pad.map[playerNum] = pad.getMogaController(); + } + initJoyStickLayout(playerNum); + } + + public void onStateEvent(StateEvent event) + { + Integer playerNum = Arrays.asList(pad.name).indexOf(event.getControllerId()); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && playerNum == -1) { + playerNum = pad.deviceDescriptor_PlayerNum + .get(pad.deviceId_deviceDescriptor.get(event.getControllerId())); + } else { + playerNum = -1; + } + + if (playerNum == null || playerNum == -1) { + return; + } + + if (event.getState() == StateEvent.STATE_CONNECTION && event.getAction() == ACTION_CONNECTED) { + int mControllerVersion = mController.getState(Controller.STATE_CURRENT_PRODUCT_VERSION); + if (mControllerVersion == Controller.ACTION_VERSION_MOGAPRO) { + pad.isMogaPro[playerNum] = true; + pad.isActiveMoga[playerNum] = true; + Log.d("com.reicast.emulator", act.getString(R.string.moga_pro_connect)); + } else if (mControllerVersion == Controller.ACTION_VERSION_MOGA) { + pad.isMogaPro[playerNum] = false; + pad.isActiveMoga[playerNum] = true; + Log.d("com.reicast.emulator", act.getString(R.string.moga_connect)); + } + if (pad.isActiveMoga[playerNum]) { + notifyMogaConnected(notify, playerNum); + } + } + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/MogaHack.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/MogaHack.java new file mode 100644 index 000000000..9e28f7331 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/MogaHack.java @@ -0,0 +1,118 @@ +/** + * Mupen64PlusAE, an N64 emulator for the Android platform + * + * Copyright (C) 2013 Paul Lamb + * + * This file is part of Mupen64PlusAE. + * + * Mupen64PlusAE is free software: you can redistribute it and/or modify it under the terms of the + * GNU General Public License as published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * Mupen64PlusAE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with Mupen64PlusAE. If + * not, see . + * + * Authors: Paul Lamb + */ +package com.reicast.emulator.periph; + +import java.util.List; + +import android.content.ComponentName; +import android.content.Context; +import android.content.Intent; +import android.content.pm.ResolveInfo; +import android.content.pm.ServiceInfo; +import android.os.Build; +import android.util.Log; + +import com.bda.controller.Controller; +import com.bda.controller.IControllerService; + +/** + * Temporary hack for crash in MOGA library on Lollipop. This hack can be removed once MOGA fixes + * their library. The actual issue is caused by the use of implicit service intents, which are + * illegal in Lollipop, as seen in the logcat message below. + * + *
+ * {@code Service Intent must be explicit: Intent { act=com.bda.controller.IControllerService } }
+ * 
+ * + * @see MOGA developer site + * @see + * Discussion on explicit intents + */ +public class MogaHack +{ + public static void init( Controller controller, Context context ) + { + if (Build.VERSION.SDK_INT > Build.VERSION_CODES.KITKAT) + { + boolean mIsBound = false; + java.lang.reflect.Field fIsBound = null; + android.content.ServiceConnection mServiceConnection = null; + java.lang.reflect.Field fServiceConnection = null; + try + { + Class cMogaController = controller.getClass(); + fIsBound = cMogaController.getDeclaredField( "mIsBound" ); + fIsBound.setAccessible( true ); + mIsBound = fIsBound.getBoolean( controller ); + fServiceConnection = cMogaController.getDeclaredField( "mServiceConnection" ); + fServiceConnection.setAccessible( true ); + mServiceConnection = ( android.content.ServiceConnection ) fServiceConnection.get( controller ); + } + catch( NoSuchFieldException e ) + { + Log.e( "MogaHack", "MOGA Lollipop Hack NoSuchFieldException (get)", e ); + } + catch( IllegalAccessException e ) + { + Log.e( "MogaHack", "MOGA Lollipop Hack IllegalAccessException (get)", e ); + } + catch( IllegalArgumentException e ) + { + Log.e( "MogaHack", "MOGA Lollipop Hack IllegalArgumentException (get)", e ); + } + if( ( !mIsBound ) && ( mServiceConnection != null ) ) + { + // Convert implicit intent to explicit intent, see http://stackoverflow.com/a/26318757 + Intent intent = new Intent( IControllerService.class.getName() ); + List resolveInfos = context.getPackageManager().queryIntentServices( intent, 0 ); + if( resolveInfos == null || resolveInfos.size() != 1 ) + { + Log.e( "MogaHack", "Somebody is trying to intercept our intent. Disabling MOGA controller for security." ); + return; + } + ServiceInfo serviceInfo = resolveInfos.get( 0 ).serviceInfo; + String packageName = serviceInfo.packageName; + String className = serviceInfo.name; + intent.setComponent( new ComponentName( packageName, className ) ); + + // Start the service explicitly + context.startService( intent ); + context.bindService( intent, mServiceConnection, 1 ); + try + { + fIsBound.setBoolean( controller, true ); + } + catch( IllegalAccessException e ) + { + Log.e( "MogaHack", "MOGA Lollipop Hack IllegalAccessException (set)", e ); + } + catch( IllegalArgumentException e ) + { + Log.e( "MogaHack", "MOGA Lollipop Hack IllegalArgumentException (set)", e ); + } + } + } + else + { + controller.init(); + } + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/SipEmulator.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/SipEmulator.java new file mode 100644 index 000000000..612d19e80 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/SipEmulator.java @@ -0,0 +1,108 @@ +package com.reicast.emulator.periph; + +import java.util.concurrent.ConcurrentLinkedQueue; + +import android.media.AudioFormat; +import android.media.AudioRecord; +import android.media.MediaRecorder; +import android.util.Log; + +public class SipEmulator extends Thread { + + static final String TAG = "SipEmulator"; + + //one second of audio data in bytes + static final int BUFFER_SIZE = 22050; + //this needs to get set to the amount the mic normally sends per data request + //...cant be bigger than a maple packet + // 240 16 (or 14) bit samples + static final int ONE_BLIP_SIZE = 480; //ALSO DEFINED IN maple_devs.h + + private AudioRecord record; + private ConcurrentLinkedQueue bytesReadBuffer; + + private boolean continueRecording; + private boolean firstGet; + + /* + 16-bit PCM @ 11025 hz + == 176.4 kbit/s + == 22050 bytes/s + */ + + public SipEmulator(){ + + Log.d(TAG, "SipEmulator constructor called"); + + init(); + + } + + private void init(){ + Log.d(TAG, "SipEmulator init called"); + + record = new AudioRecord( + MediaRecorder.AudioSource.VOICE_RECOGNITION, + 11025, + AudioFormat.CHANNEL_IN_MONO, + AudioFormat.ENCODING_PCM_16BIT, + BUFFER_SIZE); + + bytesReadBuffer = new ConcurrentLinkedQueue(); + + continueRecording = false; + firstGet = true; + } + + public void startRecording(){ + Log.d(TAG, "SipEmulator startRecording called"); + if(continueRecording){ + return; + } + record.startRecording(); + continueRecording = true; + this.start(); + } + + public void stopRecording(){ + Log.d(TAG, "SipEmulator stopRecording called"); + continueRecording = false; + record.stop(); + } + + public byte[] getData(){ + //Log.d(TAG, "SipEmulator getData called"); + //Log.d(TAG, "SipEmulator getData bytesReadBuffer size: "+bytesReadBuffer.size()); + if(firstGet || bytesReadBuffer.size()>50){//50 blips is about 2 seconds! + firstGet = false; + return catchUp(); + } + return bytesReadBuffer.poll(); + } + + private byte[] catchUp(){ + Log.d(TAG, "SipEmulator catchUp"); + byte[] last = bytesReadBuffer.poll(); + bytesReadBuffer.clear(); + return last; + } + + public void configSomething(int what, int setting){ + Log.d(TAG, "SipEmulator configSomething called"); + + } + + public void run() { + Log.d(TAG, "recordThread starting"); + + while(continueRecording){ + byte[] freshData = new byte[ONE_BLIP_SIZE]; + // read blocks + record.read(freshData, 0, ONE_BLIP_SIZE); + if(!firstGet){ + bytesReadBuffer.add(freshData); + } + } + } + +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/VJoy.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/VJoy.java new file mode 100644 index 000000000..431644d76 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/VJoy.java @@ -0,0 +1,146 @@ +package com.reicast.emulator.periph; + +import android.content.Context; +import android.content.SharedPreferences; +import android.preference.PreferenceManager; + +public class VJoy { + + public static final int key_CONT_B = 0x0002; + public static final int key_CONT_A = 0x0004; + public static final int key_CONT_START = 0x0008; + public static final int key_CONT_DPAD_UP = 0x0010; + public static final int key_CONT_DPAD_DOWN = 0x0020; + public static final int key_CONT_DPAD_LEFT = 0x0040; + public static final int key_CONT_DPAD_RIGHT = 0x0080; + public static final int key_CONT_Y = 0x0200; + public static final int key_CONT_X = 0x0400; + + public static final int LAYER_TYPE_SOFTWARE = 1; + public static final int LAYER_TYPE_HARDWARE = 2; + + public static int VJoyCount = 13; + + public static float[][] baseVJoy() { + return new float[][] { + new float[] { 24+0, 24+64, 64,64, VJoy.key_CONT_DPAD_LEFT, 0}, + new float[] { 24+64, 24+0, 64,64, VJoy.key_CONT_DPAD_UP, 0}, + new float[] { 24+128, 24+64, 64,64, VJoy.key_CONT_DPAD_RIGHT, 0}, + new float[] { 24+64, 24+128, 64,64, VJoy.key_CONT_DPAD_DOWN, 0}, + + new float[] { 440+0, 280+64, 64,64, VJoy.key_CONT_X, 0}, + new float[] { 440+64, 280+0, 64,64, VJoy.key_CONT_Y, 0}, + new float[] { 440+128, 280+64, 64,64, VJoy.key_CONT_B, 0}, + new float[] { 440+64, 280+128, 64,64, VJoy.key_CONT_A, 0}, + + new float[] { 320-32, 360+32, 64,64, VJoy.key_CONT_START, 0}, + + new float[] { 440, 200, 90,64, -1, 0}, + new float[] { 542, 200, 90,64, -2, 0}, + + new float[] { 0, 128+224, 128,128, -3, 0}, + new float[] { 96, 320, 32,32, -4, 0}, + + new float[] { 20+0 , 288+0 , 64,64, key_CONT_DPAD_LEFT|key_CONT_DPAD_UP, 0}, + new float[] { 20+128, 288+0 , 64,64, key_CONT_DPAD_RIGHT|key_CONT_DPAD_UP, 0}, + new float[] { 20+0 , 288+128, 64,64, key_CONT_DPAD_LEFT|key_CONT_DPAD_DOWN, 0}, + new float[] { 20+128, 288+128, 64,64, key_CONT_DPAD_RIGHT|key_CONT_DPAD_DOWN, 0}, + }; + } + + public static float[][] readCustomVjoyValues(Context context) { + SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); + return new float[][] { + // x-shift, y-shift, sizing-factor + new float[] { prefs.getFloat("touch_x_shift_dpad", 0), prefs.getFloat("touch_y_shift_dpad", 0), prefs.getFloat("touch_scale_dpad", 1) }, // DPAD + new float[] { prefs.getFloat("touch_x_shift_buttons", 0), prefs.getFloat("touch_y_shift_buttons", 0), prefs.getFloat("touch_scale_buttons", 1) }, // X, Y, B, A Buttons + new float[] { prefs.getFloat("touch_x_shift_start", 0), prefs.getFloat("touch_y_shift_start", 0), prefs.getFloat("touch_scale_start", 1) }, // Start + new float[] { prefs.getFloat("touch_x_shift_left_trigger", 0), prefs.getFloat("touch_y_shift_left_trigger", 0), prefs.getFloat("touch_scale_left_trigger", 1) }, // Left Trigger + new float[] { prefs.getFloat("touch_x_shift_right_trigger", 0), prefs.getFloat("touch_y_shift_right_trigger", 0), prefs.getFloat("touch_scale_right_trigger", 1) }, // Right Trigger + new float[] { prefs.getFloat("touch_x_shift_analog", 0), prefs.getFloat("touch_y_shift_analog", 0), prefs.getFloat("touch_scale_analog", 1) } // Analog Stick + }; + } + + public static float[][] getVjoy_d(float[][] vjoy_d_custom) { + return new float[][] { + new float[] { 20+0*vjoy_d_custom[0][2]+vjoy_d_custom[0][0], 288+64*vjoy_d_custom[0][2]+vjoy_d_custom[0][1], 64*vjoy_d_custom[0][2],64*vjoy_d_custom[0][2], key_CONT_DPAD_LEFT}, + new float[] { 20+64*vjoy_d_custom[0][2]+vjoy_d_custom[0][0], 288+0*vjoy_d_custom[0][2]+vjoy_d_custom[0][1], 64*vjoy_d_custom[0][2],64*vjoy_d_custom[0][2], key_CONT_DPAD_UP}, + new float[] { 20+128*vjoy_d_custom[0][2]+vjoy_d_custom[0][0], 288+64*vjoy_d_custom[0][2]+vjoy_d_custom[0][1], 64*vjoy_d_custom[0][2],64*vjoy_d_custom[0][2], key_CONT_DPAD_RIGHT}, + new float[] { 20+64*vjoy_d_custom[0][2]+vjoy_d_custom[0][0], 288+128*vjoy_d_custom[0][2]+vjoy_d_custom[0][1], 64*vjoy_d_custom[0][2],64*vjoy_d_custom[0][2], key_CONT_DPAD_DOWN}, + + new float[] { 448+0*vjoy_d_custom[1][2]+vjoy_d_custom[1][0], 288+64*vjoy_d_custom[1][2]+vjoy_d_custom[1][1], 64*vjoy_d_custom[1][2],64*vjoy_d_custom[1][2], key_CONT_X}, + new float[] { 448+64*vjoy_d_custom[1][2]+vjoy_d_custom[1][0], 288+0*vjoy_d_custom[1][2]+vjoy_d_custom[1][1], 64*vjoy_d_custom[1][2],64*vjoy_d_custom[1][2], key_CONT_Y}, + new float[] { 448+128*vjoy_d_custom[1][2]+vjoy_d_custom[1][0], 288+64*vjoy_d_custom[1][2]+vjoy_d_custom[1][1], 64*vjoy_d_custom[1][2],64*vjoy_d_custom[1][2], key_CONT_B}, + new float[] { 448+64*vjoy_d_custom[1][2]+vjoy_d_custom[1][0], 288+128*vjoy_d_custom[1][2]+vjoy_d_custom[1][1], 64*vjoy_d_custom[1][2],64*vjoy_d_custom[1][2], key_CONT_A}, + + new float[] { 320-32+vjoy_d_custom[2][0], 288+128+vjoy_d_custom[2][1], 64*vjoy_d_custom[2][2],64*vjoy_d_custom[2][2], key_CONT_START}, + + new float[] { 440+vjoy_d_custom[3][0], 200+vjoy_d_custom[3][1], 90*vjoy_d_custom[3][2],64*vjoy_d_custom[3][2], -1}, + new float[] { 542+vjoy_d_custom[4][0], 200+vjoy_d_custom[4][1], 90*vjoy_d_custom[4][2],64*vjoy_d_custom[4][2], -2}, + + new float[] { 16+vjoy_d_custom[5][0], 24+32+vjoy_d_custom[5][1], 128*vjoy_d_custom[5][2],128*vjoy_d_custom[5][2], -3}, + new float[] { 96+vjoy_d_custom[5][0], 320+vjoy_d_custom[5][1], 32*vjoy_d_custom[5][2],32*vjoy_d_custom[5][2], -4}, + + new float[] { 20+0*vjoy_d_custom[0][2]+vjoy_d_custom[0][0], 288+0*vjoy_d_custom[0][2]+vjoy_d_custom[0][1], 64*vjoy_d_custom[0][2],64*vjoy_d_custom[0][2], key_CONT_DPAD_LEFT|key_CONT_DPAD_UP}, + new float[] { 20+128*vjoy_d_custom[0][2]+vjoy_d_custom[0][0], 288+0*vjoy_d_custom[0][2]+vjoy_d_custom[0][1], 64*vjoy_d_custom[0][2],64*vjoy_d_custom[0][2], key_CONT_DPAD_RIGHT|key_CONT_DPAD_UP}, + new float[] { 20+0*vjoy_d_custom[0][2]+vjoy_d_custom[0][0], 288+128*vjoy_d_custom[0][2]+vjoy_d_custom[0][1], 64*vjoy_d_custom[0][2],64*vjoy_d_custom[0][2], key_CONT_DPAD_LEFT|key_CONT_DPAD_DOWN}, + new float[] { 20+128*vjoy_d_custom[0][2]+vjoy_d_custom[0][0], 288+128*vjoy_d_custom[0][2]+vjoy_d_custom[0][1], 64*vjoy_d_custom[0][2],64*vjoy_d_custom[0][2], key_CONT_DPAD_RIGHT|key_CONT_DPAD_DOWN}, + }; + } + + public static void writeCustomVjoyValues(float[][] vjoy_d_custom, Context context) { + SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); + + prefs.edit().putFloat("touch_x_shift_dpad", vjoy_d_custom[0][0]).commit(); + prefs.edit().putFloat("touch_y_shift_dpad", vjoy_d_custom[0][1]).commit(); + prefs.edit().putFloat("touch_scale_dpad", vjoy_d_custom[0][2]).commit(); + + prefs.edit().putFloat("touch_x_shift_buttons", vjoy_d_custom[1][0]).commit(); + prefs.edit().putFloat("touch_y_shift_buttons", vjoy_d_custom[1][1]).commit(); + prefs.edit().putFloat("touch_scale_buttons", vjoy_d_custom[1][2]).commit(); + + prefs.edit().putFloat("touch_x_shift_start", vjoy_d_custom[2][0]).commit(); + prefs.edit().putFloat("touch_y_shift_start", vjoy_d_custom[2][1]).commit(); + prefs.edit().putFloat("touch_scale_start", vjoy_d_custom[2][2]).commit(); + + prefs.edit().putFloat("touch_x_shift_left_trigger", vjoy_d_custom[3][0]).commit(); + prefs.edit().putFloat("touch_y_shift_left_trigger", vjoy_d_custom[3][1]).commit(); + prefs.edit().putFloat("touch_scale_left_trigger", vjoy_d_custom[3][2]).commit(); + + prefs.edit().putFloat("touch_x_shift_right_trigger", vjoy_d_custom[4][0]).commit(); + prefs.edit().putFloat("touch_y_shift_right_trigger", vjoy_d_custom[4][1]).commit(); + prefs.edit().putFloat("touch_scale_right_trigger", vjoy_d_custom[4][2]).commit(); + + prefs.edit().putFloat("touch_x_shift_analog", vjoy_d_custom[5][0]).commit(); + prefs.edit().putFloat("touch_y_shift_analog", vjoy_d_custom[5][1]).commit(); + prefs.edit().putFloat("touch_scale_analog", vjoy_d_custom[5][2]).commit(); + } + + public static void resetCustomVjoyValues(Context context) { + SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); + + prefs.edit().remove("touch_x_shift_dpad").commit(); + prefs.edit().remove("touch_y_shift_dpad").commit(); + prefs.edit().remove("touch_scale_dpad").commit(); + + prefs.edit().remove("touch_x_shift_buttons").commit(); + prefs.edit().remove("touch_y_shift_buttons").commit(); + prefs.edit().remove("touch_scale_buttons").commit(); + + prefs.edit().remove("touch_x_shift_start").commit(); + prefs.edit().remove("touch_y_shift_start").commit(); + prefs.edit().remove("touch_scale_start").commit(); + + prefs.edit().remove("touch_x_shift_left_trigger").commit(); + prefs.edit().remove("touch_y_shift_left_trigger").commit(); + prefs.edit().remove("touch_scale_left_trigger").commit(); + + prefs.edit().remove("touch_x_shift_right_trigger").commit(); + prefs.edit().remove("touch_y_shift_right_trigger").commit(); + prefs.edit().remove("touch_scale_right_trigger").commit(); + + prefs.edit().remove("touch_x_shift_analog").commit(); + prefs.edit().remove("touch_y_shift_analog").commit(); + prefs.edit().remove("touch_scale_analog").commit(); + } +} diff --git a/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/VmuLcd.java b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/VmuLcd.java new file mode 100644 index 000000000..c82491d08 --- /dev/null +++ b/shell/android-studio/app/src/main/java/com/reicast/emulator/periph/VmuLcd.java @@ -0,0 +1,51 @@ +package com.reicast.emulator.periph; + +import android.content.Context; +import android.graphics.Bitmap; +import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.Paint; +import android.util.Log; +import android.view.View; + +import com.reicast.emulator.emu.OnScreenMenu; + +public class VmuLcd extends View { + + public final static int w = 48; + public final static int h = 32; + + private int[] image = new int[w*h]; + private Bitmap current = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888); + private float scale; + private Paint paint; + + public VmuLcd(Context context) { + super(context); + paint = new Paint(); + scale = (float)OnScreenMenu.getPixelsFromDp(60, getContext()) / w; + Log.d("VmuLcd", "scale: "+scale); + } + + public void configureScale(int dp) { + scale = (float)OnScreenMenu.getPixelsFromDp(dp, getContext()) / w; + } + + public void updateBytes(byte[] data){ + for(int i=0; i +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "types.h" +#include "profiler/profiler.h" +#include "cfg/cfg.h" +#include "rend/TexCache.h" +#include "hw/maple/maple_devs.h" +#include "hw/maple/maple_if.h" +#include "oslib/audiobackend_android.h" + +#include "utils.h" + +extern "C" +{ + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_config(JNIEnv *env,jobject obj,jstring dirName) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_init(JNIEnv *env,jobject obj,jstring fileName) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_run(JNIEnv *env,jobject obj,jobject emu_thread) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_stop(JNIEnv *env,jobject obj) __attribute__((visibility("default"))); + + JNIEXPORT jint JNICALL Java_com_reicast_emulator_emu_JNIdc_send(JNIEnv *env,jobject obj,jint id, jint v) __attribute__((visibility("default"))); + JNIEXPORT jint JNICALL Java_com_reicast_emulator_emu_JNIdc_data(JNIEnv *env,jobject obj,jint id, jbyteArray d) __attribute__((visibility("default"))); + + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_rendinit(JNIEnv *env,jobject obj,jint w,jint h) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_rendframe(JNIEnv *env,jobject obj) __attribute__((visibility("default"))); + + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_kcode(JNIEnv * env, jobject obj, jintArray k_code, jintArray l_t, jintArray r_t, jintArray jx, jintArray jy) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_vjoy(JNIEnv * env, jobject obj,u32 id,float x, float y, float w, float h) __attribute__((visibility("default"))); + //JNIEXPORT jint JNICALL Java_com_reicast_emulator_emu_JNIdc_play(JNIEnv *env,jobject obj,jshortArray result,jint size); + + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_initControllers(JNIEnv *env, jobject obj, jbooleanArray controllers) __attribute__((visibility("default"))); + + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_setupMic(JNIEnv *env,jobject obj,jobject sip) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_diskSwap(JNIEnv *env,jobject obj, jstring newdisk) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_vmuSwap(JNIEnv *env,jobject obj) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_setupVmu(JNIEnv *env,jobject obj,jobject sip) __attribute__((visibility("default"))); + + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_dynarec(JNIEnv *env,jobject obj, jint dynarec) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_idleskip(JNIEnv *env,jobject obj, jint idleskip) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_unstable(JNIEnv *env,jobject obj, jint unstable) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_cable(JNIEnv *env,jobject obj, jint cable) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_region(JNIEnv *env,jobject obj, jint region) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_broadcast(JNIEnv *env,jobject obj, jint broadcast) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_limitfps(JNIEnv *env,jobject obj, jint limiter) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_nobatch(JNIEnv *env,jobject obj, jint nobatch) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_nosound(JNIEnv *env,jobject obj, jint noaudio) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_mipmaps(JNIEnv *env,jobject obj, jint mipmaps) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_widescreen(JNIEnv *env,jobject obj, jint stretch) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_subdivide(JNIEnv *env,jobject obj, jint subdivide) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_frameskip(JNIEnv *env,jobject obj, jint frames) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_pvrrender(JNIEnv *env,jobject obj, jint render) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_syncedrender(JNIEnv *env,jobject obj, jint sync) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_cheatdisk(JNIEnv *env,jobject obj, jstring disk) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_usereios(JNIEnv *env,jobject obj, jint reios) __attribute__((visibility("default"))); + JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_dreamtime(JNIEnv *env,jobject obj, jlong clock) __attribute__((visibility("default"))); +}; + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_dynarec(JNIEnv *env,jobject obj, jint dynarec) +{ + settings.dynarec.Enable = dynarec; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_idleskip(JNIEnv *env,jobject obj, jint idleskip) +{ + settings.dynarec.idleskip = idleskip; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_unstable(JNIEnv *env,jobject obj, jint unstable) +{ + settings.dynarec.unstable_opt = unstable; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_cable(JNIEnv *env,jobject obj, jint cable) +{ + settings.dreamcast.cable = cable; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_region(JNIEnv *env,jobject obj, jint region) +{ + settings.dreamcast.region = region; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_broadcast(JNIEnv *env,jobject obj, jint broadcast) +{ + settings.dreamcast.broadcast = broadcast; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_limitfps(JNIEnv *env,jobject obj, jint limiter) +{ + settings.aica.LimitFPS = limiter; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_nobatch(JNIEnv *env,jobject obj, jint nobatch) +{ + settings.aica.NoBatch = nobatch; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_nosound(JNIEnv *env,jobject obj, jint noaudio) +{ + settings.aica.NoSound = noaudio; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_mipmaps(JNIEnv *env,jobject obj, jint mipmaps) +{ + settings.rend.UseMipmaps = mipmaps; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_widescreen(JNIEnv *env,jobject obj, jint stretch) +{ + settings.rend.WideScreen = stretch; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_subdivide(JNIEnv *env,jobject obj, jint subdivide) +{ + settings.pvr.subdivide_transp = subdivide; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_frameskip(JNIEnv *env,jobject obj, jint frames) +{ + settings.pvr.ta_skip = frames; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_pvrrender(JNIEnv *env,jobject obj, jint render) +{ + settings.pvr.rend = render; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_syncedrender(JNIEnv *env,jobject obj, jint sync) +{ + settings.pvr.SynchronousRendering = sync; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_cheatdisk(JNIEnv *env,jobject obj, jstring disk) +{ + +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_usereios(JNIEnv *env,jobject obj, jint reios) +{ + settings.bios.UseReios = reios; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_dreamtime(JNIEnv *env,jobject obj, jlong clock) +{ + settings.dreamcast.RTC = (u32)(clock); +} + +void egl_stealcntx(); +void SetApplicationPath(wchar *path); +int dc_init(int argc,wchar* argv[]); +void dc_run(); +void dc_term(); +void mcfg_Create(MapleDeviceType type,u32 bus,u32 port); + +bool VramLockedWrite(u8* address); + +bool rend_single_frame(); +bool gles_init(); + +//extern cResetEvent rs,re; +extern int screen_width,screen_height; + +static u64 tvs_base; +static char CurFileName[256]; + +// Additonal controllers 2, 3 and 4 connected ? +static bool add_controllers[3] = { false, false, false }; + +u16 kcode[4]; +u32 vks[4]; +s8 joyx[4],joyy[4]; +u8 rt[4],lt[4]; +float vjoy_pos[14][8]; + +extern bool print_stats; + + + +void os_DoEvents() +{ + // @@@ Nothing here yet +} + +// +// Native thread that runs the actual nullDC emulator +// +static void *ThreadHandler(void *UserData) +{ + char *Args[3]; + const char *P; + + // Make up argument list + P = (const char *)UserData; + Args[0] = "dc"; + Args[1] = "-config"; + Args[2] = P&&P[0]? (char *)malloc(strlen(P)+32):0; + + if(Args[2]) + { + strcpy(Args[2],"config:image="); + strcat(Args[2],P); + } + + // Add additonal controllers + for (int i = 0; i < 3; i++) + { + if (add_controllers[i]) + mcfg_Create(MDT_SegaController,i+1,5); + } + + // Run nullDC emulator + dc_init(Args[2]? 3:1,Args); +} + +// +// Platform-specific NullDC functions +// + + +void UpdateInputState(u32 Port) +{ + // @@@ Nothing here yet +} + +void UpdateVibration(u32 port, u32 value) +{ + +} + +void *libPvr_GetRenderTarget() +{ + // No X11 window in Android + return(0); +} + +void *libPvr_GetRenderSurface() +{ + // No X11 display in Android + return(0); +} + +void common_linux_setup(); + +void os_SetWindowText(char const *Text) +{ + putinf(Text); +} +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_config(JNIEnv *env,jobject obj,jstring dirName) +{ + // Set home directory based on User config + const char* D = dirName? env->GetStringUTFChars(dirName,0):0; + set_user_config_dir(D); + set_user_data_dir(D); + printf("Config dir is: %s\n", get_writable_config_path("/").c_str()); + printf("Data dir is: %s\n", get_writable_data_path("/").c_str()); + env->ReleaseStringUTFChars(dirName,D); +} +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_init(JNIEnv *env,jobject obj,jstring fileName) +{ + // Get filename string from Java + const char* P = fileName? env->GetStringUTFChars(fileName,0):0; + if(!P) CurFileName[0] = '\0'; + else + { + printf("Got URI: '%s'\n",P); + strncpy(CurFileName,(strlen(P)>=7)&&!memcmp(P,"file://",7)? P+7:P,sizeof(CurFileName)); + CurFileName[sizeof(CurFileName)-1] = '\0'; + env->ReleaseStringUTFChars(fileName,P); + } + + printf("Opening file: '%s'\n",CurFileName); + + // Initialize platform-specific stuff + common_linux_setup(); + + // Set configuration + settings.profile.run_counts = 0; + + +/* + // Start native thread + pthread_attr_init(&PTAttr); + pthread_attr_setdetachstate(&PTAttr,PTHREAD_CREATE_DETACHED); + pthread_create(&PThread,&PTAttr,ThreadHandler,CurFileName); + pthread_attr_destroy(&PTAttr); + */ + + ThreadHandler(CurFileName); +} + +#define SAMPLE_COUNT 512 + +JNIEnv* jenv; //we are abusing the f*** out of this poor guy +//JavaVM* javaVM = NULL; //this seems like the right way to go +//stuff for audio +jshortArray jsamples; +jmethodID writemid; +jmethodID coreMessageMid; +jmethodID dieMid; +jobject emu; +//stuff for microphone +jobject sipemu; +jmethodID getmicdata; +//stuff for vmu lcd +jobject vmulcd = NULL; +jbyteArray jpix = NULL; +jmethodID updatevmuscreen; + + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_run(JNIEnv *env,jobject obj,jobject emu_thread) +{ + install_prof_handler(0); + + jenv=env; + emu=emu_thread; + + jsamples=env->NewShortArray(SAMPLE_COUNT*2); + writemid=env->GetMethodID(env->GetObjectClass(emu),"WriteBuffer","([SI)I"); + coreMessageMid=env->GetMethodID(env->GetObjectClass(emu),"coreMessage","([B)V"); + dieMid=env->GetMethodID(env->GetObjectClass(emu),"Die","()V"); +// msgboxf("HELLO!", MBX_OK); + + dc_run(); +} + +int msgboxf(const wchar* Text,unsigned int Type,...) +{ + wchar S[2048]; + va_list Args; + + va_start(Args,Type); + vsprintf(S,Text,Args); + va_end(Args); + + int byteCount = strlen(S); + jbyteArray bytes = jenv->NewByteArray(byteCount); + jenv->SetByteArrayRegion(bytes, 0, byteCount, (jbyte*)S); + + jenv->CallVoidMethod(emu,coreMessageMid,bytes); + + return (MBX_OK); +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_setupMic(JNIEnv *env,jobject obj,jobject sip) +{ + sipemu = env->NewGlobalRef(sip); + getmicdata = env->GetMethodID(env->GetObjectClass(sipemu),"getData","()[B"); + delete MapleDevices[0][1]; + mcfg_Create(MDT_Microphone,0,1); +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_setupVmu(JNIEnv *env,jobject obj,jobject vmu) +{ + //env->GetJavaVM(&javaVM); + vmulcd = env->NewGlobalRef(vmu); + updatevmuscreen = env->GetMethodID(env->GetObjectClass(vmu),"updateBytes","([B)V"); + //jpix=env->NewByteArray(1536); +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_stop(JNIEnv *env,jobject obj) +{ + dc_term(); +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_diskSwap(JNIEnv *env,jobject obj, jstring newdisk) +{ + // Needs actual code to swap a disk +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_vmuSwap(JNIEnv *env,jobject obj) +{ + maple_device* olda = MapleDevices[0][0]; + maple_device* oldb = MapleDevices[0][1]; + MapleDevices[0][0] = NULL; + MapleDevices[0][1] = NULL; + usleep(50000);//50 ms, wait for host to detect disconnect + + MapleDevices[0][0] = oldb; + MapleDevices[0][1] = olda; +} + +JNIEXPORT jint JNICALL Java_com_reicast_emulator_emu_JNIdc_send(JNIEnv *env,jobject obj,jint cmd, jint param) +{ + if (cmd==0) + { + if (param==0) + { + KillTex=true; + printf("Killing texture cache\n"); + } + + if (param==1) + { + settings.pvr.ta_skip^=1; + printf("settings.pvr.ta_skip: %d\n",settings.pvr.ta_skip); + } + if (param==2) + { + #if FEAT_SHREC != DYNAREC_NONE + print_stats=true; + printf("Storing blocks ...\n"); + #endif + } + } + else if (cmd==1) + { + if (param==0) + sample_Stop(); + else + sample_Start(param); + } + else if (cmd==2) + { + } +} + +JNIEXPORT jint JNICALL Java_com_reicast_emulator_emu_JNIdc_data(JNIEnv *env,jobject obj,jint id, jbyteArray d) +{ + if (id==1) + { + printf("Loading symtable (%p,%p,%p,%p)\n",env,obj,id,d); + int len=env->GetArrayLength(d); + u8* syms=(u8*)malloc(len); + printf("Loading symtable to %p, %d\n",syms,len); + env->GetByteArrayRegion(d,0,len,(jbyte*)syms); + sample_Syms(syms,len); + } +} + + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_rendframe(JNIEnv *env,jobject obj) +{ + while(!rend_single_frame()) ; +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_kcode(JNIEnv * env, jobject obj, jintArray k_code, jintArray l_t, jintArray r_t, jintArray jx, jintArray jy) +{ + jint *k_code_body = env->GetIntArrayElements(k_code, 0); + jint *l_t_body = env->GetIntArrayElements(l_t, 0); + jint *r_t_body = env->GetIntArrayElements(r_t, 0); + jint *jx_body = env->GetIntArrayElements(jx, 0); + jint *jy_body = env->GetIntArrayElements(jy, 0); + + for(int i = 0; i < 4; i++) + { + kcode[i] = k_code_body[i]; + lt[i] = l_t_body[i]; + rt[i] = r_t_body[i]; + joyx[i] = jx_body[i]; + joyy[i] = jy_body[i]; + } + + env->ReleaseIntArrayElements(k_code, k_code_body, 0); + env->ReleaseIntArrayElements(l_t, l_t_body, 0); + env->ReleaseIntArrayElements(r_t, r_t_body, 0); + env->ReleaseIntArrayElements(jx, jx_body, 0); + env->ReleaseIntArrayElements(jy, jy_body, 0); +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_rendinit(JNIEnv * env, jobject obj, jint w,jint h) +{ + screen_width = w; + screen_height = h; + + //gles_term(); + + egl_stealcntx(); + + if (!gles_init()) + die("OPENGL FAILED"); + + install_prof_handler(1); +} + +JNIEXPORT void JNICALL Java_com_reicast_emulator_emu_JNIdc_vjoy(JNIEnv * env, jobject obj,u32 id,float x, float y, float w, float h) +{ + if(idGetBooleanArrayElements(controllers, 0); + memcpy(add_controllers, controllers_body, 3); + env->ReleaseBooleanArrayElements(controllers, controllers_body, 0); +} + +// Audio Stuff +u32 androidaudio_push(void* frame, u32 amt, bool wait) +{ + verify(amt==SAMPLE_COUNT); + //yeah, do some audio piping magic here ! + jenv->SetShortArrayRegion(jsamples,0,amt*2,(jshort*)frame); + return jenv->CallIntMethod(emu,writemid,jsamples,wait); +} + +void androidaudio_init() +{ + // Nothing to do here... +} + +void androidaudio_term() +{ + // Move along, there is nothing to see here! +} + +bool os_IsAudioBuffered() +{ + return jenv->CallIntMethod(emu,writemid,jsamples,-1)==0; +} + +audiobackend_t audiobackend_android = { + "android", // Slug + "Android Audio", // Name + &androidaudio_init, + &androidaudio_push, + &androidaudio_term +}; + +int get_mic_data(u8* buffer) +{ + jbyteArray jdata = (jbyteArray)jenv->CallObjectMethod(sipemu,getmicdata); + if(jdata==NULL){ + //LOGW("get_mic_data NULL"); + return 0; + } + jenv->GetByteArrayRegion(jdata, 0, SIZE_OF_MIC_DATA, (jbyte*)buffer); + jenv->DeleteLocalRef(jdata); + return 1; +} + +int push_vmu_screen(u8* buffer) +{ + if(vmulcd==NULL){ + return 0; + } + JNIEnv *env = jenv; + //javaVM->AttachCurrentThread(&env, NULL); + if(jpix==NULL){ + jpix=env->NewByteArray(1536); + } + env->SetByteArrayRegion(jpix,0,1536,(jbyte*)buffer); + env->CallVoidMethod(vmulcd,updatevmuscreen,jpix); + return 1; +} + +void os_DebugBreak() +{ + //notify the parent thread about it ... +} diff --git a/shell/android-studio/app/src/main/jni/src/XperiaPlay.c b/shell/android-studio/app/src/main/jni/src/XperiaPlay.c new file mode 100644 index 000000000..20ae6c2af --- /dev/null +++ b/shell/android-studio/app/src/main/jni/src/XperiaPlay.c @@ -0,0 +1,313 @@ +/* + * Copyright (c) 2011, Sony Ericsson Mobile Communications AB. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of the Sony Ericsson Mobile Communications AB nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define EXPORT_XPLAY __attribute__ ((visibility("default"))) + +#define TAG "reicast" +#define LOGW(...) ((void)__android_log_print( ANDROID_LOG_WARN, TAG, __VA_ARGS__ )) + +#undef NUM_METHODS +#define NUM_METHODS(x) (sizeof(x)/sizeof(*(x))) + +static JavaVM *jVM; + +typedef unsigned char BOOL; +#define FALSE 0 +#define TRUE 1 + +static jobject g_pActivity = 0; +static jmethodID javaOnNDKTouch = 0; +static jmethodID javaOnNDKKey = 0; + +static bool isXperiaPlay; + +/** + * Our saved state data. + */ +struct TOUCHSTATE +{ + int down; + int x; + int y; +}; + +/** + * Shared state for our app. + */ +struct ENGINE +{ + struct android_app* app; + int render; + int width; + int height; + int has_focus; + //ugly way to track touch states + struct TOUCHSTATE touchstate_screen[64]; + struct TOUCHSTATE touchstate_pad[64]; +}; + +void attach(){ + +} + +/** + * Process the next input event. + */ +static +int32_t +engine_handle_input( struct android_app* app, AInputEvent* event ) +{ + JNIEnv *jni; + (*jVM)->AttachCurrentThread(jVM, &jni, NULL); + + struct ENGINE* engine = (struct ENGINE*)app->userData; + if (AInputEvent_getType(event) == AINPUT_EVENT_TYPE_KEY){ + int device = AInputEvent_getDeviceId(event); + int action = AKeyEvent_getAction(event); + int keyCode = AKeyEvent_getKeyCode(event); + if(jni && g_pActivity){ + if((*jni)->ExceptionCheck(jni)) { + (*jni)->ExceptionDescribe(jni); + (*jni)->ExceptionClear(jni); + } + (*jni)->CallIntMethod(jni, g_pActivity, javaOnNDKKey, device, keyCode, action, AKeyEvent_getMetaState(event)); + if (!(keyCode == AKEYCODE_MENU || keyCode == AKEYCODE_BACK || keyCode == AKEYCODE_BUTTON_THUMBR || keyCode == AKEYCODE_VOLUME_UP || keyCode == AKEYCODE_VOLUME_DOWN || keyCode == AKEYCODE_BUTTON_SELECT)) { + return 1; + } + } + } else if( AInputEvent_getType(event) == AINPUT_EVENT_TYPE_MOTION ) { + int device = AInputEvent_getDeviceId( event ); + int nSourceId = AInputEvent_getSource( event ); + int nPointerCount = AMotionEvent_getPointerCount( event ); + int n; + + jboolean newTouch = JNI_TRUE; + for( n = 0 ; n < nPointerCount ; ++n ) + { + int nPointerId = AMotionEvent_getPointerId( event, n ); + int nAction = AMOTION_EVENT_ACTION_MASK & AMotionEvent_getAction( event ); + int nRawAction = AMotionEvent_getAction( event ); + + struct TOUCHSTATE *touchstate = 0; + if( nSourceId == AINPUT_SOURCE_TOUCHPAD ) { + touchstate = engine->touchstate_pad; + } else { + touchstate = engine->touchstate_screen; + } + + if( nAction == AMOTION_EVENT_ACTION_POINTER_DOWN || nAction == AMOTION_EVENT_ACTION_POINTER_UP ) + { + int nPointerIndex = (AMotionEvent_getAction( event ) & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT; + nPointerId = AMotionEvent_getPointerId( event, nPointerIndex ); + } + + if( nAction == AMOTION_EVENT_ACTION_DOWN || nAction == AMOTION_EVENT_ACTION_POINTER_DOWN ) + { + touchstate[nPointerId].down = 1; + } + else if( nAction == AMOTION_EVENT_ACTION_UP || nAction == AMOTION_EVENT_ACTION_POINTER_UP || nAction == AMOTION_EVENT_ACTION_CANCEL ) + { + touchstate[nPointerId].down = 0; + } + + if (touchstate[nPointerId].down == 1) + { + touchstate[nPointerId].x = AMotionEvent_getX( event, n ); + touchstate[nPointerId].y = AMotionEvent_getY( event, n ); + } + + if( jni && g_pActivity && isXperiaPlay) { +// (*jni)->CallVoidMethod( jni, g_pActivity, javaOnNDKTouch, device, nSourceId, nRawAction, touchstate[nPointerId].x, touchstate[nPointerId].y, newTouch); + (*jni)->CallVoidMethod( jni, g_pActivity, javaOnNDKTouch, device, nSourceId, nRawAction, touchstate[nPointerId].x, touchstate[nPointerId].y); + } + newTouch = JNI_FALSE; + } + + if( isXperiaPlay ) { + return 1; + } else { + return 0; + } + } + return 0; +} + +/** + * Process the next main command. + */ +static +void +engine_handle_cmd( struct android_app* app, int32_t cmd ) +{ + struct ENGINE* engine = (struct ENGINE*)app->userData; + switch( cmd ) + { + case APP_CMD_SAVE_STATE: + // The system has asked us to save our current state. Do so if needed + break; + case APP_CMD_INIT_WINDOW: + // The window is being shown, get it ready. + if( engine->app->window != NULL ) + { + engine->has_focus = 1; + } + break; + + case APP_CMD_GAINED_FOCUS: + engine->has_focus = 1; + break; + + case APP_CMD_LOST_FOCUS: + // When our app loses focus, we stop rendering. + engine->render = 0; + engine->has_focus = 0; + //engine_draw_frame( engine ); + break; + } +} + +/** + * This is the main entry point of a native application that is using + * android_native_app_glue. It runs in its own thread, with its own + * event loop for receiving input events and doing other things (rendering). + */ +void +android_main( struct android_app* state ) +{ + struct ENGINE engine; + + // Make sure glue isn't stripped. + app_dummy(); + + memset( &engine, 0, sizeof(engine) ); + state->userData = &engine; + state->onAppCmd = engine_handle_cmd; + state->onInputEvent = engine_handle_input; + engine.app = state; + + //setup(state); + //JNIEnv *env; + //(*jVM)->AttachCurrentThread(jVM, &env, NULL); + + if( state->savedState != NULL ) + { + // We are starting with a previous saved state; restore from it. + } + // our 'main loop' + while( 1 ) + { + // Read all pending events. + int ident; + int events; + struct android_poll_source* source; + // If not rendering, we will block forever waiting for events. + // If rendering, we loop until all events are read, then continue + // to draw the next frame. + while( (ident = ALooper_pollAll( 250, NULL, &events, (void**)&source) ) >= 0 ) + { + // Process this event. + // This will call the function pointer android_app:nInputEvent() which in our case is + // engine_handle_input() + if( source != NULL ) + { + source->process( state, source ); + } + // Check if we are exiting. + if( state->destroyRequested != 0 ) + { + return; + } + //usleep(20000); //20 miliseconds + } + } +} + +static +int +RegisterNative( JNIEnv* env, jobject clazz, jboolean touchpad ) +{ + g_pActivity = (jobject)(*env)->NewGlobalRef( env, clazz ); + isXperiaPlay = (bool) touchpad; + return 0; +} + +static const JNINativeMethod activity_methods[] = +{ + { "RegisterNative", "(Z)I", (void*)RegisterNative }, +}; + +jint EXPORT_XPLAY JNICALL JNI_OnLoad(JavaVM * vm, void * reserved) +{ + JNIEnv *env; + jVM = vm; + if((*vm)->GetEnv(vm, (void**) &env, JNI_VERSION_1_4) != JNI_OK) + { + LOGW("%s - Failed to get the environment using GetEnv()", __FUNCTION__); + return -1; + } + const char* interface_path = "com/reicast/emulator/GL2JNINative"; + jclass java_activity_class = (*env)->FindClass( env, interface_path ); + + if( !java_activity_class ) + { + LOGW( "%s - Failed to get %s class reference", __FUNCTION__, interface_path ); + return -1; + } + + if( (*env)->RegisterNatives( env, java_activity_class, activity_methods, NUM_METHODS(activity_methods) ) != JNI_OK ) + { + LOGW( "%s - Failed to register native activity methods", __FUNCTION__ ); + return -1; + } + + char device_type[PROP_VALUE_MAX]; + __system_property_get("ro.product.model", device_type); + if( isXperiaPlay ) { + LOGW( "%s touchpad enabled", device_type ); + } else { + LOGW( "%s touchpad ignored", device_type ); + } + +// javaOnNDKTouch = (*env)->GetMethodID( env, java_activity_class, "OnNativeMotion", "(IIIIIZ)Z"); + javaOnNDKTouch = (*env)->GetMethodID( env, java_activity_class, "OnNativeMotion", "(IIIII)Z"); + javaOnNDKKey = (*env)->GetMethodID( env, java_activity_class, "OnNativeKeyPress", "(IIII)Z"); + + return JNI_VERSION_1_4; +} diff --git a/shell/android-studio/app/src/main/jni/src/utils.cpp b/shell/android-studio/app/src/main/jni/src/utils.cpp new file mode 100644 index 000000000..a4fc7b129 --- /dev/null +++ b/shell/android-studio/app/src/main/jni/src/utils.cpp @@ -0,0 +1,177 @@ +#include +#include +#include +extern "C" { +#include "deps/libpng/png.h" +} +#include "types.h" +#include "deps/libzip/zip.h" + +#define TEXTURE_LOAD_ERROR 0 + +//Taken from http://en.wikibooks.org/wiki/OpenGL_Programming/Intermediate/Textures +/** loadTexture + * loads a png file into an opengl texture object, using cstdio , libpng, and opengl. + * + * \param filename : the png file to be loaded + * \param width : width of png, to be updated as a side effect of this function + * \param height : height of png, to be updated as a side effect of this function + * + * \return GLuint : an opengl texture id. Will be 0 if there is a major error, + * should be validated by the client of this function. + * + */ +zip_file* file; + +zip* APKArchive; +void setAPK (const char* apkPath) { + LOGI("Loading APK %s", apkPath); + APKArchive = zip_open(apkPath, 0, NULL); + if (APKArchive == NULL) { + LOGE("Error loading APK"); + return; + } + + //Just for debug, print APK contents + int numFiles = zip_get_num_files(APKArchive); + for (int i=0; i + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/cd.png b/shell/android-studio/app/src/main/res/drawable/cd.png new file mode 100644 index 000000000..3d7f847a8 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/cd.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/chd.png b/shell/android-studio/app/src/main/res/drawable/chd.png new file mode 100644 index 000000000..e69a3d687 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/chd.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/clear_cache.png b/shell/android-studio/app/src/main/res/drawable/clear_cache.png new file mode 100644 index 000000000..8cd4a771a Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/clear_cache.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/close.png b/shell/android-studio/app/src/main/res/drawable/close.png new file mode 100644 index 000000000..c326c0e79 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/close.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/cloud.png b/shell/android-studio/app/src/main/res/drawable/cloud.png new file mode 100644 index 000000000..dd0e3f8f6 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/cloud.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/cloud_big.png b/shell/android-studio/app/src/main/res/drawable/cloud_big.png new file mode 100644 index 000000000..ed95038a5 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/cloud_big.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/config.png b/shell/android-studio/app/src/main/res/drawable/config.png new file mode 100644 index 000000000..807c4a922 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/config.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/debug.png b/shell/android-studio/app/src/main/res/drawable/debug.png new file mode 100644 index 000000000..41d8476de Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/debug.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/disc.png b/shell/android-studio/app/src/main/res/drawable/disc.png new file mode 100644 index 000000000..3671b6d90 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/disc.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/disk_swap.png b/shell/android-studio/app/src/main/res/drawable/disk_swap.png new file mode 100644 index 000000000..97450c0b3 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/disk_swap.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/disk_unknown.png b/shell/android-studio/app/src/main/res/drawable/disk_unknown.png new file mode 100644 index 000000000..56afe630c Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/disk_unknown.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/enable_sound.png b/shell/android-studio/app/src/main/res/drawable/enable_sound.png new file mode 100644 index 000000000..ca73d733c Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/enable_sound.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/frames_down.png b/shell/android-studio/app/src/main/res/drawable/frames_down.png new file mode 100644 index 000000000..faf15cb75 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/frames_down.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/frames_limit_off.png b/shell/android-studio/app/src/main/res/drawable/frames_limit_off.png new file mode 100644 index 000000000..3f8684ddf Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/frames_limit_off.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/frames_limit_on.png b/shell/android-studio/app/src/main/res/drawable/frames_limit_on.png new file mode 100644 index 000000000..2abe5b723 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/frames_limit_on.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/frames_up.png b/shell/android-studio/app/src/main/res/drawable/frames_up.png new file mode 100644 index 000000000..a0980bb1a Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/frames_up.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/game_selector.xml b/shell/android-studio/app/src/main/res/drawable/game_selector.xml new file mode 100644 index 000000000..87c9c9bc8 --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/game_selector.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/gdi.png b/shell/android-studio/app/src/main/res/drawable/gdi.png new file mode 100644 index 000000000..668acbfcb Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/gdi.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/gradient_bg.xml b/shell/android-studio/app/src/main/res/drawable/gradient_bg.xml new file mode 100644 index 000000000..1a64c34a5 --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/gradient_bg.xml @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/gradient_bg_hover.xml b/shell/android-studio/app/src/main/res/drawable/gradient_bg_hover.xml new file mode 100644 index 000000000..aab77af2e --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/gradient_bg_hover.xml @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/ic_banner.png b/shell/android-studio/app/src/main/res/drawable/ic_banner.png new file mode 100644 index 000000000..557821804 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/ic_banner.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/ic_xperia_play.png b/shell/android-studio/app/src/main/res/drawable/ic_xperia_play.png new file mode 100644 index 000000000..a45c8cca7 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/ic_xperia_play.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/image_bg.xml b/shell/android-studio/app/src/main/res/drawable/image_bg.xml new file mode 100644 index 000000000..a1004de21 --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/image_bg.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/input.png b/shell/android-studio/app/src/main/res/drawable/input.png new file mode 100644 index 000000000..019545823 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/input.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/list_item_border.xml b/shell/android-studio/app/src/main/res/drawable/list_item_border.xml new file mode 100644 index 000000000..573b55f80 --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/list_item_border.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/list_selector.xml b/shell/android-studio/app/src/main/res/drawable/list_selector.xml new file mode 100644 index 000000000..fb1560c2e --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/list_selector.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/menuback.png b/shell/android-studio/app/src/main/res/drawable/menuback.png new file mode 100644 index 000000000..44bbf1fc3 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/menuback.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/menutile.png b/shell/android-studio/app/src/main/res/drawable/menutile.png new file mode 100644 index 000000000..38d7cb48c Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/menutile.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/mic_icon.png b/shell/android-studio/app/src/main/res/drawable/mic_icon.png new file mode 100644 index 000000000..532a3c900 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/mic_icon.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/mute_sound.png b/shell/android-studio/app/src/main/res/drawable/mute_sound.png new file mode 100644 index 000000000..18e7f21ee Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/mute_sound.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/normal_view.png b/shell/android-studio/app/src/main/res/drawable/normal_view.png new file mode 100644 index 000000000..f71f8016b Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/normal_view.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/open_folder.png b/shell/android-studio/app/src/main/res/drawable/open_folder.png new file mode 100644 index 000000000..2df8929ed Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/open_folder.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/print_stats.png b/shell/android-studio/app/src/main/res/drawable/print_stats.png new file mode 100644 index 000000000..9875cfd0d Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/print_stats.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/profiler.png b/shell/android-studio/app/src/main/res/drawable/profiler.png new file mode 100644 index 000000000..3babd0a4a Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/profiler.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/question.png b/shell/android-studio/app/src/main/res/drawable/question.png new file mode 100644 index 000000000..3ca2a313d Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/question.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/reset.png b/shell/android-studio/app/src/main/res/drawable/reset.png new file mode 100644 index 000000000..00d40b11a Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/reset.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/rounded.xml b/shell/android-studio/app/src/main/res/drawable/rounded.xml new file mode 100644 index 000000000..e3f741d9d --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/rounded.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/shadow.xml b/shell/android-studio/app/src/main/res/drawable/shadow.xml new file mode 100644 index 000000000..67bb1c57f --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/shadow.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/drawable/star.png b/shell/android-studio/app/src/main/res/drawable/star.png new file mode 100644 index 000000000..3a653fcd9 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/star.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/toggle_a_b.png b/shell/android-studio/app/src/main/res/drawable/toggle_a_b.png new file mode 100644 index 000000000..95fcf23e6 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/toggle_a_b.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/toggle_r_l.png b/shell/android-studio/app/src/main/res/drawable/toggle_r_l.png new file mode 100644 index 000000000..cfe053647 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/toggle_r_l.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/up.png b/shell/android-studio/app/src/main/res/drawable/up.png new file mode 100644 index 000000000..de4d469be Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/up.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/vmu_swap.png b/shell/android-studio/app/src/main/res/drawable/vmu_swap.png new file mode 100644 index 000000000..44fcb5e15 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/vmu_swap.png differ diff --git a/shell/android-studio/app/src/main/res/drawable/widescreen.png b/shell/android-studio/app/src/main/res/drawable/widescreen.png new file mode 100644 index 000000000..d48120ac0 Binary files /dev/null and b/shell/android-studio/app/src/main/res/drawable/widescreen.png differ diff --git a/shell/android-studio/app/src/main/res/layout-v14/configure_fragment.xml b/shell/android-studio/app/src/main/res/layout-v14/configure_fragment.xml new file mode 100644 index 000000000..ea701a285 --- /dev/null +++ b/shell/android-studio/app/src/main/res/layout-v14/configure_fragment.xml @@ -0,0 +1,781 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/shell/android-studio/app/src/main/res/layout/activity_main.xml b/shell/android-studio/app/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..7c6cc6f58 --- /dev/null +++ b/shell/android-studio/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/layout/app_list_item.xml b/shell/android-studio/app/src/main/res/layout/app_list_item.xml new file mode 100644 index 000000000..baf746bc8 --- /dev/null +++ b/shell/android-studio/app/src/main/res/layout/app_list_item.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/layout/bios_list_item.xml b/shell/android-studio/app/src/main/res/layout/bios_list_item.xml new file mode 100644 index 000000000..0c5f1f6fc --- /dev/null +++ b/shell/android-studio/app/src/main/res/layout/bios_list_item.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + diff --git a/shell/android-studio/app/src/main/res/layout/change_item.xml b/shell/android-studio/app/src/main/res/layout/change_item.xml new file mode 100644 index 000000000..2cfdc070f --- /dev/null +++ b/shell/android-studio/app/src/main/res/layout/change_item.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/layout/cloud_fragment.xml b/shell/android-studio/app/src/main/res/layout/cloud_fragment.xml new file mode 100644 index 000000000..602ab5094 --- /dev/null +++ b/shell/android-studio/app/src/main/res/layout/cloud_fragment.xml @@ -0,0 +1,48 @@ + + + + + + + +